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

19 lines
442 B
HTML

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