summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/317934-1-inner.html
blob: d8aeea6bdba2ec83c9c483df34e515a89dffb275 (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>
<head>
<script>
function clickit()
{
document.getElementById('button').click();
}
window.addEventListener('load', clickit);
</script>
</head>
<body>
<div style="width:400px;">
<q style="position:relative;"><q style="position:relative;">
Some random text, some random text, some random text
<span style="position: relative;">
Some random text, some random text, some random text
</span>
</q></q>
</div>
<script>
function doe(){
var q1=document.getElementsByTagName('q')[0];
var q2=document.getElementsByTagName('q')[1];
q1.style.position='static';
q2.style.position='static';
}
//setTimeout(doe,200);
</script>
<button id="button" onclick="doe()">Clicking this button should not crash Mozilla</button>
</body>
</html>