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
/
351328-1.xhtml
blob
a7c7e10ca82642de54445264b000f87f243bc4ed
1
<html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
2
<head>
3
4
<script>
5
6
function
boom
()
7
{
8
document
.
getElementById
(
'A'
).
setAttribute
(
'colspan'
,
0
);
9
document
.
getElementById
(
'B'
).
setAttribute
(
'rowspan'
,
3
);
10
}
11
12
</script>
13
14
</head>
15
16
<body
onload
=
"boom();"
>
17
18
<table>
19
<tr>
20
<td
id
=
"A"
>
TD
</td>
21
<td
id
=
"B"
colspan
=
"3"
>
TD
</td>
22
</tr>
23
</table>
24
25
</body>
26
</html>