mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
13 lines
239 B
HTML
13 lines
239 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<body>
|
||
|
|
||
|
<table border="1" width="1"><tr><td id="td">abc def</td></tr></table>
|
||
|
|
||
|
<script>
|
||
|
document.body.offsetWidth;
|
||
|
document.getElementById("td").appendChild(document.createTextNode("ghi"));
|
||
|
</script>
|
||
|
|
||
|
</body>
|
||
|
</html>
|