Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Side by Side Diff: LayoutTests/compositing/squashing/invalidate-on-grouped-mapping-reorder-expected.html

Issue 1291703005: Issue invalidations when squashed layers move later or off of a grouped mapping. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script>
3 onload = requestAnimationFrame(function() {
4 requestAnimationFrame(function() {
5 document.getElementById('badlayer').style.zIndex = "1"
6 });
7 });
8 </script>
9 <div style="float:right;position:relative;z-index:3">
10 This test is broken if this text shows up twice
11 </div>
12 <div style="width: 0">
13 <div style="height:220px;position:relative" id="badlayer">
14 <div style="transform: translateX(325px);">
15 </div>
16 </div>
17 <div style="height:220px;position:relative">
18 <div style="position: absolute; top: 0px; left: 0px; width:10px;height:10px; transform: translate3d(1px, 1px, 1px); background: lightgray"></div>
19 <div style="position: absolute; top: 0px; left: 0px; background: lightblue; width:10px;height:10px;" ></div>
20 </div>
21 a
22 </div>
23 <br>
24 <div style="position:relative; height: 500px;">
25 </div>
26
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698