Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/embedded-content/the-embed-element/embed-document-under-content-visibility-focus.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>HTML Test: The embed element represents a document</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<meta name="assert" content="Ensure document finishes load when focus is attempted before the embed is finished loading">
<style>
.hidden { content-visibility: hidden; }
</style>
<body>
<script>
async_test(t => {
addEventListener('load', t.step_func_done(() => {
assert_true(window.childLoaded);
}));
}, "ensure onload happens");
</script>
<div class=hidden>
<embed id=target src="embed-iframe.html">
</div>
<script>
// Ensure we process style in the hidden object, which normally delays
// load until the embed object is finished loading.
target.focus();
</script>
</body>