mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-29 21:25:35 +00:00
b99dc5856a
--HG-- extra : rebase_source : ea1aff21fb0b410c1076775cd76d7569d0f6c695
18 lines
291 B
HTML
18 lines
291 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script>
|
|
|
|
function boom() {
|
|
var table = document.createElement("table");
|
|
var cap = document.createElement("caption");
|
|
cap.appendChild(table)
|
|
table.caption = cap;
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();"></body>
|
|
</html>
|