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

Unified Diff: third_party/WebKit/LayoutTests/svg/custom/use-nested-missing-target.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.svg
===================================================================
--- third_party/WebKit/LayoutTests/svg/custom/use-nested-missing-target.svg (revision 0)
+++ third_party/WebKit/LayoutTests/svg/custom/use-nested-missing-target.svg (revision 40425)
@@ -0,0 +1,15 @@
+<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();
+ }
+ ]]>
+ </script>
+ <text y="30" id="myText" fill="green">PASS</text>
+ <use id="use1" xlink:href="#missing"/>
+ <use x="50" id="use2" xlink:href="#use1"></use>
+ <use y="50" id="use3" xlink:href="#use2"></use>
+ <use x="-50" id="use4" xlink:href="#use3"></use>
+</svg>

Powered by Google App Engine
This is Rietveld 408576698