summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/467460-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/467460-1.html')
-rw-r--r--layout/reftests/bugs/467460-1.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/layout/reftests/bugs/467460-1.html b/layout/reftests/bugs/467460-1.html
new file mode 100644
index 0000000000..cbef8e92da
--- /dev/null
+++ b/layout/reftests/bugs/467460-1.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script type="text/javascript">
+
+function m()
+{
+ document.getElementById("f").style.position = "fixed";
+}
+
+</script>
+</head>
+<body onload="m();">
+ <div style="transform: translate(50px, 50px); border: 1px solid red; width: 7ch;">
+ A
+ <div id="f" style="left: 50px; top: 100px; border: 1px solid blue; width: 7ch;">
+ 0
+ </div>
+ </div>
+</body>
+</html>