blob: a9e381a20a8ac4a9e2b6033be644a1d31713de0b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<html xmlns="http://www.w3.org/1999/xhtml">
<body onload="var doomed = document.getElementById('doomed'); doomed.parentNode.removeChild(doomed); ">
<table id="table1" style="border-collapse: collapse;">
<tbody>
<tr>
</tr>
</tbody>
<tbody id="doomed">
<tr>
<td>td</td>
</tr>
</tbody>
<colgroup>
</colgroup>
</table>
</body>
</html>
|