summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/373383-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/373383-1.html')
-rw-r--r--layout/reftests/bugs/373383-1.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/layout/reftests/bugs/373383-1.html b/layout/reftests/bugs/373383-1.html
new file mode 100644
index 0000000000..62ccd58ddc
--- /dev/null
+++ b/layout/reftests/bugs/373383-1.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <style type="text/css">
+ #a { width: 15em; border: 1px solid black; }
+ #b { float: right; width: 8em; height: 3em; background: #ccc; }
+ </style>
+</head>
+<body>
+ <div id="a">
+ <div id="b">float right</div>
+ <div>Long text long text long text long text long text long text long text long text long text long text long text long text long text</div>
+ </div>
+
+ <script>
+ var longWord = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
+
+ document.body.offsetWidth;
+ n = document.getElementById("b").nextSibling;
+ n.data = longWord + n.data;
+
+ </script>
+</body>
+</html>