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-iframe-element/iframe-display-none-with-object.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset=utf-8>
<title>Test that iframe with object triggers load event in owner document</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<script>
async_test(t => {
window.onload = t.step_func_done();
const obj = document.createElement("iframe");
obj.style.display = "none";
obj.src = "support/iframe-with-object.html";
document.body.appendChild(obj);
}, "Load event triggered on window");
</script>
</body>