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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/custom/use-nested-missing-target-added.svg

Issue 669236: Check in test changes for Webkit bug 35603. (Closed) Base URL: svn://chrome-svn/chrome/branches/249/src/
Patch Set: Created 10 years, 9 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
(Empty)
1 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlin k" onload="runTest()">
2 <script type="text/javascript">
3 <![CDATA[
4 function runTest() {
5 if (window.layoutTestController)
6 layoutTestController.dumpAsText();
7 document.getElementById("myText1").id = "myText";
8 }
9 ]]>
10 </script>
11 <def>
12 <text id="myText1" fill="green" x="0" y="0">PASS</text>
13 </def>
14 <use y="30" id="use1" xlink:href="#myText"/>
15 <use y="30" xlink:href="#use1"/>
16 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698