repo.or.cz
/
wine-gecko.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git]
/
layout
/
tables
/
crashtests
/
374356-1.html
blob
d58c9ba4d5f3c7881182f060fb4b9ef47069acae
1
<html>
2
<head>
3
<script>
4
function
boom
()
5
{
6
var
tbody
=
document
.
getElementById
(
"tbody"
);
7
tbody
.
style
.
overflow
=
"auto"
;
8
document
.
body
.
offsetWidth
;
9
tbody
.
style
.
overflow
=
""
;
10
}
11
</script>
12
</head>
13
14
<body
onload
=
"boom();"
>
15
16
<table
border
=
"1"
>
17
<tbody
id
=
"tbody"
>
18
<tr>
19
<td>
20
<p>
A
</p>
21
<p
style
=
"height: 18000000px"
>
B
</p>
22
</td>
23
</tr>
24
</tbody>
25
</table>
26
27
</body>
28
</html>