summaryrefslogtreecommitdiffstats
path: root/accessible/tests/crashtests/1578282.html
blob: 31cc1ce02b7b35350785d9cf3f597a14916f9f23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html class="reftest-wait">
<head>
<script>
function onload() {
  document.documentElement.style.display = "none"
  document.documentElement.getBoundingClientRect()
  document.documentElement.style.display = ""
  window.setTimeout(() => {
    document.documentElement.removeAttribute("class");
  }, 1000);
}
</script>
</head>
<body onload="onload()">
<marquee style="display: inline-grid">
<video></video>
<bgsound></bgsound>
&lt;
</marquee>
</body>
</html>