Index: LayoutTests/compositing/squashing/invalidate-on-grouped-mapping-reorder-expected.html |
diff --git a/LayoutTests/compositing/squashing/invalidate-on-grouped-mapping-reorder-expected.html b/LayoutTests/compositing/squashing/invalidate-on-grouped-mapping-reorder-expected.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d0495356681cc49f84e68c7f4a782489bf200ad3 |
--- /dev/null |
+++ b/LayoutTests/compositing/squashing/invalidate-on-grouped-mapping-reorder-expected.html |
@@ -0,0 +1,26 @@ |
+<!DOCTYPE html> |
+<script> |
+onload = requestAnimationFrame(function() { |
+ requestAnimationFrame(function() { |
+ document.getElementById('badlayer').style.zIndex = "1" |
+ }); |
+}); |
+</script> |
+<div style="float:right;position:relative;z-index:3"> |
+ This test is broken if this text shows up twice |
+</div> |
+<div style="width: 0"> |
+ <div style="height:220px;position:relative" id="badlayer"> |
+ <div style="transform: translateX(325px);"> |
+ </div> |
+ </div> |
+ <div style="height:220px;position:relative"> |
+ <div style="position: absolute; top: 0px; left: 0px; width:10px;height:10px; transform: translate3d(1px, 1px, 1px); background: lightgray"></div> |
+ <div style="position: absolute; top: 0px; left: 0px; background: lightblue; width:10px;height:10px;" ></div> |
+ </div> |
+ a |
+</div> |
+<br> |
+<div style="position:relative; height: 500px;"> |
+</div> |
+ |