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

Side by Side Diff: LayoutTests/fast/backgrounds/background-fast-path-simple-color.html

Issue 24438004: Rename testRunner.dumpAsText(true) to testRunner.dumpAsTextWithPixelResults() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: more tests Created 7 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 | Annotate | Revision Log
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <!-- 4 <!--
5 Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=59274">https://bugs.we bkit.org/show_bug.cgi?id=59274</a> 5 Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=59274">https://bugs.we bkit.org/show_bug.cgi?id=59274</a>
6 The test passes if you see a green rectangle below. 6 The test passes if you see a green rectangle below.
7 --> 7 -->
8 <style type="text/css" media="screen"> 8 <style type="text/css" media="screen">
9 div { 9 div {
10 width:100px; 10 width:100px;
11 height:100px; 11 height:100px;
12 display:block; 12 display:block;
13 background-repeat:no-repeat; 13 background-repeat:no-repeat;
14 background-image:none, url(../../http/tests/multipart/resources/green-10 0x100.png); 14 background-image:none, url(../../http/tests/multipart/resources/green-10 0x100.png);
15 background-position:0px 0px, 0px 0px; 15 background-position:0px 0px, 0px 0px;
16 } 16 }
17 17
18 div:first-child { 18 div:first-child {
19 background-color: red; 19 background-color: red;
20 } 20 }
21 </style> 21 </style>
22 <script> 22 <script>
23 if (window.testRunner) 23 if (window.testRunner)
24 testRunner.dumpAsText(true); 24 testRunner.dumpAsTextWithPixelResults();
25 </script> 25 </script>
26 </head> 26 </head>
27 <body> 27 <body>
28 <div></div> 28 <div></div>
29 </body> 29 </body>
30 </html> 30 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698