summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/348729-1-inner.html
blob: 38f8d615a0a692dc76406ce9c7321c77c4a4dc4a (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
<html><head>
<title>Testcase bug - Crash [@ nsRuleNode::GetParentData]</title>
<script>
function addstyles1(){
var x=document.createElementNS('http://www.w3.org/1999/xhtml','style');
x.innerHTML='\
*::first-letter {float: right; }\
';
document.documentElement.appendChild(x);

setTimeout(removestyles,500);
}
setTimeout(addstyles1,200);

function removestyles(i){
document.getElementsByTagName('tfoot')[0].removeAttribute('style');
document.getElementsByTagName('table')[0].removeAttribute('style');

window.parent.document.documentElement.className = "";
}
</script>
<style>
*::before { content:"before text";}
</style>
</head><body>
<table style="display: block;">
<tbody><tr><td></td></tr></tbody><tfoot style="position: absolute;"></tfoot>
</table>
</body></html>