mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
14 lines
366 B
HTML
14 lines
366 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>Testcase #2 for bug 370713</title>
|
|
<script>
|
|
function boom() {
|
|
document.getElementById('tbody').appendChild(document.createElement('tr'));
|
|
}
|
|
|
|
window.addEventListener("load", boom, false);
|
|
</script>
|
|
</head>
|
|
<body><table style="border-collapse:collapse"><tbody id="tbody"><tr><td></td></tr><tr></tr></tbody></table></body>
|
|
</html>
|