Index: LayoutTests/compositing/reorder-z-with-style-expected.html |
diff --git a/LayoutTests/compositing/reorder-z-with-style-expected.html b/LayoutTests/compositing/reorder-z-with-style-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..abb21c2a4c7cc1d6b3cef145d712b18a1c60a6fa |
--- /dev/null |
+++ b/LayoutTests/compositing/reorder-z-with-style-expected.html |
@@ -0,0 +1,24 @@ |
+<!DOCTYPE html> |
+<style> |
+ #container { |
+ height: 300px; |
+ width: 300px; |
+ background-color: green; |
+ -webkit-transform: translateZ(0); |
+ } |
+ |
+ #parent { |
+ position: absolute; |
+ left: 400px; |
+ width: 300px; |
+ height: 300px; |
+ background-color: green; |
+ -webkit-transform: translateZ(0); |
+ } |
+</style> |
+<body> |
+<div id="container"> |
+ <div id="parent"> |
+ </div> |
+</div> |
+</body> |