summaryrefslogtreecommitdiffstats
path: root/layout/reftests/transform-3d/sorting-1-ref.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/transform-3d/sorting-1-ref.html')
-rw-r--r--layout/reftests/transform-3d/sorting-1-ref.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/layout/reftests/transform-3d/sorting-1-ref.html b/layout/reftests/transform-3d/sorting-1-ref.html
new file mode 100644
index 0000000000..8028e4fd43
--- /dev/null
+++ b/layout/reftests/transform-3d/sorting-1-ref.html
@@ -0,0 +1,35 @@
+<html>
+ <head>
+ <style type="text/css">
+ #stage {
+ perspective: 1000px;
+ }
+
+ #parent {
+ transform-style: preserve-3d;
+ }
+
+ #big {
+ width: 1000px;
+ height: 1000px;
+ background-color: #995C7F;
+ transform: rotatey(45deg);
+ }
+
+ #small {
+ width: 100px;
+ height: 100px;
+ background-color: #995C7F;
+ transform: translate3d(600px, 200px, 0px);
+ }
+ </style>
+ </head>
+ <body>
+ <div id="stage">
+ <div id="parent">
+ <div id="small"></div>
+ <div id="big"></div>
+ </div>
+ </div>
+ </body>
+</html>