blob: 84df33eee332ae6c60ba0f3c6fba7ce5f83a8bb7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<html xmlns="http://www.w3.org/1999/xhtml">
<table style="border-collapse: collapse;">
<colgroup span="2" id="b">
<col id="a"/>
</colgroup>
</table>
<script xmlns="http://www.w3.org/1999/xhtml">
<![CDATA[
function doe() {
document.getElementById('a').parentNode.removeChild(document.getElementById('a'));
document.getElementById('b').style.borderLeft = "6px inset green";
}
document.documentElement.offsetHeight;
setTimeout(doe, 0);
]]>
</script>
</html>
|