Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-grid/grid-model/grid-layout-stale-001.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>CSS Grid: Do not add non-children of the grid into the grid container</title>
<link rel="author" title="Sergio Villar" href="mailto:svillar@igalia.com">
<link rel="match" href="reference/grid-layout-stale-001-ref.html">
<meta name="assert" content="Check that we do not add non-children of the grid into the grid representation."/>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-actions.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<style>
embed { position: absolute; }
.c1 { animation-delay: 45762s; }
</style>
<p>This test passes if it doesn't crash and it matches the reference.</p>
<div style="display: grid;">
<embed type="something-not-js">
</div>
<script>
function keyPress(key) {
let actions = new test_driver.Actions()
.keyDown(key)
.keyUp(key);
return actions.send();
}
function crash() {
highlight.setAttribute("class", "c1");
document.body.appendChild(highlight);
for (i=0; i != 8; i++)
keyPress("\t");
keyPress("X");
}
document.addEventListener("DOMContentLoaded", crash, false);
</script>