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

Unified Diff: third_party/WebKit/LayoutTests/svg/custom/use-nested-missing-target-removed.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, 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/svg/custom/use-nested-missing-target-removed.svg
===================================================================
--- third_party/WebKit/LayoutTests/svg/custom/use-nested-missing-target-removed.svg (revision 0)
+++ third_party/WebKit/LayoutTests/svg/custom/use-nested-missing-target-removed.svg (revision 40425)
@@ -0,0 +1,14 @@
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" onload="runTest()">
+ <script type="text/javascript">
+ <![CDATA[
+ function runTest() {
+ if (window.layoutTestController)
+ layoutTestController.dumpAsText();
+ document.getElementById("myText1").id = "myText1";
+ }
+ ]]>
+ </script>
+ <text y="30" id="myText" fill="green">PASS</text>
+ <use y="30" id="use1" xlink:href="#myText"/>
+ <use y="30" xlink:href="#use1"/>
+</svg>

Powered by Google App Engine
This is Rietveld 408576698