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

Side by Side Diff: LayoutTests/svg/custom/xlink-to-invalid-gradient.svg

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 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <svg 2 <svg
3 xmlns="http://www.w3.org/2000/svg" 3 xmlns="http://www.w3.org/2000/svg"
4 xmlns:xlink="http://www.w3.org/1999/xlink" 4 xmlns:xlink="http://www.w3.org/1999/xlink"
5 version="1.0" 5 version="1.0"
6 width="200" 6 width="200"
7 height="200"> 7 height="200">
8 <script><![CDATA[ 8 <script><![CDATA[
9 if (window.testRunner) 9 if (window.testRunner)
10 testRunner.dumpAsText(true); 10 testRunner.dumpAsTextWithPixelResults();
11 ]]></script> 11 ]]></script>
12 <defs> 12 <defs>
13 <linearGradient id="linearGradient1" xlink:href="#linearGradient0" /> 13 <linearGradient id="linearGradient1" xlink:href="#linearGradient0" />
14 </defs> 14 </defs>
15 <rect width="200" height="200" style="fill:url(#linearGradient1) green;" id="rec t0" /> 15 <rect width="200" height="200" style="fill:url(#linearGradient1) green;" id="rec t0" />
16 <text id="text0" x="10" y="20" style="fill:green"> 16 <text id="text0" x="10" y="20" style="fill:green">
17 PASS 17 PASS
18 <linearGradient id="linearGradient0"> 18 <linearGradient id="linearGradient0">
19 <stop offset="0" stop-color="white"/> 19 <stop offset="0" stop-color="white"/>
20 <stop offset="1" stop-color="black"/> 20 <stop offset="1" stop-color="black"/>
21 </linearGradient> 21 </linearGradient>
22 </text> 22 </text>
23 </svg> 23 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698