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

Side by Side Diff: LayoutTests/css3/compositing/effect-background-blend-mode.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 <script> 2 <script>
3 if (window.testRunner) 3 if (window.testRunner)
4 » window.testRunner.dumpAsText(true); 4 » window.testRunner.dumpAsTextWithPixelResults();
5 </script> 5 </script>
6 <style> 6 <style>
7 7
8 li 8 li
9 { 9 {
10 margin: 5px; 10 margin: 5px;
11 width: 130px; 11 width: 130px;
12 height: 130px; 12 height: 130px;
13 background: url("resources/ducky.png") no-repeat 0 0 /100% 100%, linear -gradient(to right, #00ffff 0%, rgba(0,0,255,0) 24%, #ff0000 50%, #ffff00 75%, # 00ff00 100%); 13 background: url("resources/ducky.png") no-repeat 0 0 /100% 100%, linear -gradient(to right, #00ffff 0%, rgba(0,0,255,0) 24%, #ff0000 50%, #ffff00 75%, # 00ff00 100%);
14 display: block; 14 display: block;
(...skipping 15 matching lines...) Expand all
30 <li style="background-blend-mode: soft-light, normal"></li> 30 <li style="background-blend-mode: soft-light, normal"></li>
31 <li style="background-blend-mode: difference, normal"></li> 31 <li style="background-blend-mode: difference, normal"></li>
32 <li style="background-blend-mode: exclusion, normal"></li> 32 <li style="background-blend-mode: exclusion, normal"></li>
33 <li style="background-blend-mode: hue, normal;"></li> 33 <li style="background-blend-mode: hue, normal;"></li>
34 <li style="background-blend-mode: saturation, normal"></li> 34 <li style="background-blend-mode: saturation, normal"></li>
35 <li style="background-blend-mode: color, normal"></li> 35 <li style="background-blend-mode: color, normal"></li>
36 <li style="background-blend-mode: luminosity, normal"></li> 36 <li style="background-blend-mode: luminosity, normal"></li>
37 </ul> 37 </ul>
38 </body> 38 </body>
39 39
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698