summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/430412-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/430412-1.html')
-rw-r--r--layout/reftests/bugs/430412-1.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/layout/reftests/bugs/430412-1.html b/layout/reftests/bugs/430412-1.html
new file mode 100644
index 0000000000..03e4727c53
--- /dev/null
+++ b/layout/reftests/bugs/430412-1.html
@@ -0,0 +1,28 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+<style>
+ body > div { width:200px; height:50px; overflow:auto; border:1px solid black; margin-bottom:2em; }
+ body > div > div { height:10px; background:yellow; }
+</style>
+</head>
+<body>
+
+ <div>
+ <div style="width:200.1px;"></div>
+ </div>
+
+ <div>
+ <div style="width:201px;"></div>
+ </div>
+
+ <div style="direction:rtl;">
+ <div style="width:200.1px;"></div>
+ </div>
+
+ <div style="direction:rtl;">
+ <div style="width:201px;"></div>
+ </div>
+
+</body>
+</html>