gecko-dev/dom/html/crashtests/1282894.html
Jessica Jong b99dc5856a Bug 1282894 - Propagate exception on setting HTMLTableElement.caption. r=bz
--HG--
extra : rebase_source : ea1aff21fb0b410c1076775cd76d7569d0f6c695
2016-07-21 22:40:00 +02:00

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>