summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/1475003.html
blob: 6cdfefbe62852f85b81ce563dd6f477a4657d455 (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 go() {
  window.requestAnimationFrame(eh);
}
function eh() {
  a.appendChild(b);
  d.innerHTML = c.outerHTML;
  document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload=go()>
<audio id="a" onerror="eh()" src="x"></audio>
<data id="b">
<li id="c">
<svg>
<set attributeName="overflow" to="hidden"/>
<li id="d">
</html>