summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/144004-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/144004-1.html')
-rw-r--r--layout/reftests/bugs/144004-1.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/layout/reftests/bugs/144004-1.html b/layout/reftests/bugs/144004-1.html
new file mode 100644
index 0000000000..7fd91392d8
--- /dev/null
+++ b/layout/reftests/bugs/144004-1.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<html style="display: inline; 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="display: inline; margin: 0; padding: 0; border: 0">
+ <script>
+ document.body.offsetWidth;
+ test();
+ </script>
+ </body>
+</html>