summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/804323-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/804323-1.html')
-rw-r--r--layout/reftests/bugs/804323-1.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/layout/reftests/bugs/804323-1.html b/layout/reftests/bugs/804323-1.html
new file mode 100644
index 0000000000..8a19fc745b
--- /dev/null
+++ b/layout/reftests/bugs/804323-1.html
@@ -0,0 +1,25 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+<style>
+body { margin:0; padding:0; overflow:hidden; }
+#new {
+ position: absolute;
+ left: 100px;
+ top: 100px;
+ width: 100px;
+ height: 100px;
+ background: yellow;
+}
+</style>
+</head>
+<body>
+<div id="new" style="display:none"></div>
+<script>
+document.body.getBoundingClientRect().height;
+document.body.style.transform = "translateX(100px)";
+document.body.getBoundingClientRect().width;
+document.getElementById("new").style.display = "";
+</script>
+</body>
+</html>