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

Side by Side Diff: LayoutTests/fast/regions/symbol-in-named-flow-crash.svg

Issue 159933010: Remove everything region-specific from LayoutTests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 10 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
(Empty)
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k">
2 <defs>
3 <symbol id="symbol">
4 <use id="use"/>
5 </symbol>
6 </defs>
7 <use xlink:href="#symbol"/>
8 <script><![CDATA[
9
10 if (window.testRunner)
11 testRunner.dumpAsText();
12
13 document.getElementById("symbol").setAttribute("style","-webkit-flow-into:thread ;");
14 document.getElementById("use").appendChild(document.createElement("radialGradien t"));
15 var elem = document.getElementById("symbol").appendChild(document.createElement( "title"));
16
17 ]]></script>
18 <text x="10" y="20">Test for WebKitBug 84493: crash when collecting svg symb ol element in named flow.</text>
19 <text x="10" y="40">This test PASSES if it does not CRASH or ASSERT.</text>
20 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698