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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/fixed-position-layer-moved.html

Issue 2327223002: Move all remaining fast/repaint tests to paint/invalidation (Closed)
Patch Set: Created 4 years, 3 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <script> 2 <script>
3 window.onload = function() 3 window.onload = function()
4 { 4 {
5 if (!window.testRunner || !window.internals) 5 if (!window.testRunner || !window.internals)
6 return; 6 return;
7 7
8 testRunner.dumpAsText(); 8 testRunner.dumpAsText();
9 document.body.offsetTop; 9 document.body.offsetTop;
10 internals.startTrackingRepaints(document); 10 internals.startTrackingRepaints(document);
(...skipping 15 matching lines...) Expand all
26 left: 200px; 26 left: 200px;
27 width: 100px; 27 width: 100px;
28 -webkit-backface-visibility: hidden; 28 -webkit-backface-visibility: hidden;
29 } 29 }
30 </style> 30 </style>
31 31
32 There should be no repaint when the divs are moved. 32 There should be no repaint when the divs are moved.
33 <div class="fixed" id="a">A</div> 33 <div class="fixed" id="a">A</div>
34 <div class="fixed" id="b">B</div> 34 <div class="fixed" id="b">B</div>
35 <pre id="result"></pre> 35 <pre id="result"></pre>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698