summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/634232-1.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/bugs/634232-1.html')
-rw-r--r--layout/reftests/bugs/634232-1.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/layout/reftests/bugs/634232-1.html b/layout/reftests/bugs/634232-1.html
new file mode 100644
index 0000000000..d85b032021
--- /dev/null
+++ b/layout/reftests/bugs/634232-1.html
@@ -0,0 +1,31 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+<style>
+ .wackeddiv {
+ position: fixed;
+ left: 20px;
+ top: 20px;
+ width: 50px;
+ height: 50px;
+ border: 2px solid highlight;
+ background-color: transparent;
+ transform: rotate(90deg);
+ }
+
+ .posabssemitransparentblack {
+ position:absolute;
+ left: 0px;
+ top: 50px;
+ width: 100px;
+ height: 100px;
+ background: lime;
+ opacity: 0.1;
+ }
+</style>
+</head>
+<body>
+ <div class="posabssemitransparentblack"></div>
+ <div class="wackeddiv"></div>
+</body>
+</html>