blob: d2ba7a997c9a05c6e795759eb4bdccaf0bd597e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<html id='a' class="reftest-wait">
<script>
let w;
window.addEventListener("MozReftestInvalidate", finish);
window.onload=function() {
b.src=document.getElementById('c').innerHTML;
b.setAttribute('src', 'video-crash.webm');
document.documentElement.style.display='none';
w = window.top.open('');
var o = window.frames[0].document.body.childNodes[0];
document.getElementById('d').appendChild(o.parentNode.removeChild(o));
o = document.getElementById('a');
var p = o.parentNode;
o.setAttribute('id', 0)
p.removeChild(o);
p.appendChild(o);
o.setAttribute('style', 0)
p.removeChild(o);
p.appendChild(o);
}
function finish() {
try {
w.close();
} catch (e) {}
document.documentElement.className = "";
}
</script>
<iframe id='b'></iframe>
<object id='c'>
<ruby id='d'>
</html>
|