mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-03 19:05:35 +00:00
11 lines
254 B
HTML
11 lines
254 B
HTML
<!DOCTYPE html>
|
|
<script>
|
|
function boom()
|
|
{
|
|
document.getElementsByTagName("tbody")[0].style.position = "absolute";
|
|
document.getElementsByTagName("table")[0].style.color = "green";
|
|
}
|
|
</script>
|
|
<body onload="boom();">
|
|
<table><tbody></tbody></table>
|