summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/400171-1c.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/400171-1c.html')
-rw-r--r--layout/reftests/bugs/400171-1c.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/layout/reftests/bugs/400171-1c.html b/layout/reftests/bugs/400171-1c.html
new file mode 100644
index 0000000000..8032a8bbfb
--- /dev/null
+++ b/layout/reftests/bugs/400171-1c.html
@@ -0,0 +1,24 @@
+<html class="reftest-wait">
+<head>
+ <style>
+ body { width: 100px; line-height: 15px; }
+ div { width: 100px; float: left }
+ div.a { height: 30px; background: lightblue; }
+ div.b { height: 10px; background: lightgreen; }
+ div.c { height: 10px; background: black; }
+ </style>
+ <script>
+ function tweak() {
+ document.getElementById('changeMe').style.height = '100px';
+ document.documentElement.className = "";
+ }
+ </script>
+</head>
+<body onload="tweak()">
+ <div class="a"></div>
+ <br/>
+ <div class="b" id="changeMe"></div>
+ <br/>
+ <div class="c"></div>
+</body>
+</html>