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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/csspaint/valid-image-after-load.html

Issue 2868003002: CSSPaint: Move layout tests in csspaint/ to http/tests/csspaint/ (Closed)
Patch Set: rebase Created 3 years, 7 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 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../resources/run-after-layout-and-paint.js"></script> 4 <script src="../resources/run-after-layout-and-paint.js"></script>
5 <style> 5 <style>
6 #output { 6 #output {
7 width: 100px; 7 width: 100px;
8 height: 100px; 8 height: 100px;
9 background-color: red; 9 background-color: red;
10 } 10 }
(...skipping 23 matching lines...) Expand all
34 el.style.backgroundImage = 'paint(green)'; 34 el.style.backgroundImage = 'paint(green)';
35 runAfterLayoutAndPaint(function() { 35 runAfterLayoutAndPaint(function() {
36 if (window.testRunner) { 36 if (window.testRunner) {
37 testRunner.notifyDone(); 37 testRunner.notifyDone();
38 } 38 }
39 }); 39 });
40 }); 40 });
41 </script> 41 </script>
42 </body> 42 </body>
43 </html> 43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698