summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/849996-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/849996-1.html')
-rw-r--r--layout/reftests/bugs/849996-1.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/layout/reftests/bugs/849996-1.html b/layout/reftests/bugs/849996-1.html
new file mode 100644
index 0000000000..b6cef62c2d
--- /dev/null
+++ b/layout/reftests/bugs/849996-1.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html>
+<html>
+<head>
+<style>
+#parent {
+ width: 200px;
+ height: 200px;
+ overflow: hidden;
+ transform: translateX(10px);
+ background: green;
+}
+#child {
+ position: fixed;
+ top: -10px;
+ left: -10px;
+ width: 100px;
+ height: 100px;
+ background: red;
+}
+</style>
+</head>
+<body>
+<div id="parent">
+ <div id="child"></div>
+</div>
+</body>
+</html>