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

Side by Side Diff: third_party/WebKit/LayoutTests/svg/custom/use-nested-notarget.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 }
8 ]]>
9 </script>
10 <text y="30" id="myText" fill="green">PASS</text>
11 <use id="use1"/>
12 <use x="50" id="use2" xlink:href="#use1"></use>
13 <use y="50" id="use3" xlink:href="#use2"></use>
14 <use x="-50" id="use4" xlink:href="#use3"></use>
15 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698