tenfourfox/layout/reftests/bugs/144004-2-ref.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

19 lines
390 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function test() {
var div = document.createElement("div");
div.appendChild(document.createTextNode("text"));
document.body.appendChild(div);
}
</script>
</head>
<body style="margin: 0; padding: 0; border: 0">
<script>
document.body.offsetWidth;
test();
</script>
</body>
</html>