1
0
Fork 0
firefox/layout/generic/crashtests/1638860-1.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

24 lines
580 B
HTML

<html>
<body>
<style>
html {
transform-style: preserve-3d;
}
div,html {
display: inline-grid;
grid-template-columns: subgrid;
}
div {
position: fixed;
}
</style>
<script>
window.addEventListener('load', () => {
const div = document.createElementNS('http://www.w3.org/1999/xhtml', 'div')
const text = document.createTextNode('BAR')
div.appendChild(text)
document.documentElement.appendChild(div)
})
</script>
</body>
</html>