1
0
Fork 0
firefox/layout/base/crashtests/1539303-iframe.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

34 lines
724 B
HTML

<html>
<head>
<style>
LI {
min-width: max-content;
column-count: 72;
}
</style>
<script>
function start () {
document.getElementById('ul').animate({
'scrollSnapPointsY': ['repeat(2vh', ''],
'paddingInlineStart': ['25in', '']
}, {
delay: 2,
fill: 'both',
})
document.getElementById('ul').scrollIntoView(false)
}
// reload once
if (location.hash == "") {
location.hash = "#hello";
setTimeout('location.reload()', 0)
}
document.addEventListener('DOMContentLoaded', start)
</script>
</head>
<body>
<ul id="ul">
<li></li>
</ul>
</body>
</html>