summaryrefslogtreecommitdiffstats
path: root/dom/media/tests/crashtests/1505957.html
blob: 7b0780a9cfb3124303a22aece13fe502f378620f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html id='a'>
<script>
window.onload=function() {
    b.src=document.getElementById('c').innerHTML;
    b.setAttribute('src', 'video-crash.webm');
    document.documentElement.style.display='none';
    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);
}
</script>
<iframe id='b'></iframe>
<object id='c'>
<ruby id='d'>
</html>