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

Side by Side Diff: LayoutTests/svg/dom/path-marker-removed-crash.svg

Issue 216933006: Remove carriage returns from LayoutTests (18) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Expectations Created 6 years, 8 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 <svg xmlns="http://www.w3.org/2000/svg"> 1 <svg xmlns="http://www.w3.org/2000/svg">
2 <defs id="test"> 2 <defs id="test">
3 <marker id="marker"></marker> 3 <marker id="marker"></marker>
4 </defs> 4 </defs>
5 <path marker-end="url(#marker)" d="M 130 13L 180 185"/> 5 <path marker-end="url(#marker)" d="M 130 13L 180 185"/>
6 <path marker-end="url(#marker)" d="M 138 13L 180 185"/> 6 <path marker-end="url(#marker)" d="M 138 13L 180 185"/>
7 <text x="50" y="50">PASS</text> 7 <text x="50" y="50">PASS</text>
8 <script> 8 <script>
9 <![CDATA[ 9 <![CDATA[
10 if (window.testRunner) 10 if (window.testRunner)
(...skipping 15 matching lines...) Expand all
26 test.removeChild(document.getElementById('marker')); 26 test.removeChild(document.getElementById('marker'));
27 gc(); 27 gc();
28 28
29 if (window.testRunner) 29 if (window.testRunner)
30 testRunner.notifyDone(); 30 testRunner.notifyDone();
31 } 31 }
32 32
33 setTimeout("runTest()", 0); 33 setTimeout("runTest()", 0);
34 ]]> 34 ]]>
35 </script> 35 </script>
36 </svg> 36 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698