зеркало из https://github.com/mozilla/gecko-dev.git
25 строки
373 B
HTML
25 строки
373 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
|
|
<script>
|
|
|
|
|
|
function init()
|
|
{
|
|
tbody = document.getElementsByTagName("tbody")[0];
|
|
comment = document.createComment('foopy');
|
|
tbody.parentNode.insertBefore(comment, tbody);
|
|
}
|
|
|
|
window.addEventListener("load", init, false);
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<table><tbody><tr><td></td></tr></tbody></table>
|
|
|
|
</body>
|
|
</html> |