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

Side by Side Diff: third_party/WebKit/LayoutTests/paint/invalidation/compositing/end-of-opacity-transition.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 if (window.testRunner) 3 if (window.testRunner)
4 testRunner.waitUntilDone(); 4 testRunner.waitUntilDone();
5 onload = function() { 5 onload = function() {
6 var animated = document.getElementById('animated'); 6 var animated = document.getElementById('animated');
7 animated.addEventListener('transitionend', function() { 7 animated.addEventListener('transitionend', function() {
8 if (window.testRunner) 8 if (window.testRunner)
9 testRunner.notifyDone(); 9 testRunner.notifyDone();
10 }); 10 });
(...skipping 25 matching lines...) Expand all
36 position: absolute; 36 position: absolute;
37 top: 300px; 37 top: 300px;
38 } 38 }
39 </style> 39 </style>
40 <div id="background"></div> 40 <div id="background"></div>
41 <div id="animated"><div id="foreground"></div></div> 41 <div id="animated"><div id="foreground"></div></div>
42 <div id="description"> 42 <div id="description">
43 Tests paint invalidation on end of opacity transition.<br> 43 Tests paint invalidation on end of opacity transition.<br>
44 Passes if there is a green square and no red.<br> 44 Passes if there is a green square and no red.<br>
45 </div> 45 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698