summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/246669-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/246669-1.html')
-rw-r--r--layout/reftests/bugs/246669-1.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/layout/reftests/bugs/246669-1.html b/layout/reftests/bugs/246669-1.html
new file mode 100644
index 0000000000..a091deecc3
--- /dev/null
+++ b/layout/reftests/bugs/246669-1.html
@@ -0,0 +1,22 @@
+<!doctype html>
+<html>
+<head>
+<style type="text/css">
+div {
+ display: table;
+}
+div div {
+ float: left;
+ width: 200px;
+ border: 2px solid #000;
+}
+</style>
+</head>
+<body>
+<div>
+ <div>First float</div>
+ <script type="text/javascript">b=document.body.offsetHeight;</script>
+ <div>Second float</div>
+</div>
+</body>
+</html>