summaryrefslogtreecommitdiffstats
path: root/layout/reftests/transform-3d/sorting-2a.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/transform-3d/sorting-2a.html')
-rw-r--r--layout/reftests/transform-3d/sorting-2a.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/layout/reftests/transform-3d/sorting-2a.html b/layout/reftests/transform-3d/sorting-2a.html
new file mode 100644
index 0000000000..6c5ba56f98
--- /dev/null
+++ b/layout/reftests/transform-3d/sorting-2a.html
@@ -0,0 +1,29 @@
+<html>
+ <head>
+ <style type="text/css">
+ #parent {
+ transform-style: preserve-3d;
+ }
+
+ #one {
+ width: 100px;
+ height: 100px;
+ background-color: #00FF00;
+ transform: translatez(10px);
+ }
+
+ #two {
+ width: 100px;
+ height: 100px;
+ background-color: red;
+ transform: translatez(-10px) translatey(-50px);
+ }
+ </style>
+ </head>
+ <body>
+ <div id="parent">
+ <div id="one"></div>
+ <div id="two"></div>
+ </div>
+ </body>
+</html>