Title: [195753] branches/safari-601-branch/LayoutTests/svg/custom
Revision
195753
Author
matthew_han...@apple.com
Date
2016-01-28 10:15:24 -0800 (Thu, 28 Jan 2016)

Log Message

Remove pattern-content-inheritance-cycle tests. rdar://problem/23910829

Removed Paths

Diff

Deleted: branches/safari-601-branch/LayoutTests/svg/custom/pattern-content-inheritance-cycle-expected.svg (195752 => 195753)


--- branches/safari-601-branch/LayoutTests/svg/custom/pattern-content-inheritance-cycle-expected.svg	2016-01-28 18:08:41 UTC (rev 195752)
+++ branches/safari-601-branch/LayoutTests/svg/custom/pattern-content-inheritance-cycle-expected.svg	2016-01-28 18:15:24 UTC (rev 195753)
@@ -1,16 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink">
-    <g fill="none" stroke="black" stroke-width="1">
-        <circle cx="75" cy="75" fill="lime" r="50"/>
-        <circle cx="200" cy="75" fill="none" r="50"/>
-
-        <circle cx="75" cy="200" fill="lime" r="50"/>
-        <circle cx="200" cy="200" fill="none" r="50"/>
-        <circle cx="325" cy="200" fill="none" r="50"/>
-    
-        <circle cx="75" cy="325" fill="lime" r="50"/>
-        <circle cx="200" cy="325" fill="none" r="50"/>
-    
-        <circle cx="75" cy="450" fill="lime" r="50"/>
-        <circle cx="200" cy="450" fill="none" r="50"/>
-    </g>
-</svg>

Deleted: branches/safari-601-branch/LayoutTests/svg/custom/pattern-content-inheritance-cycle.svg (195752 => 195753)


--- branches/safari-601-branch/LayoutTests/svg/custom/pattern-content-inheritance-cycle.svg	2016-01-28 18:08:41 UTC (rev 195752)
+++ branches/safari-601-branch/LayoutTests/svg/custom/pattern-content-inheritance-cycle.svg	2016-01-28 18:15:24 UTC (rev 195753)
@@ -1,56 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink">
-    <defs>
-        <!-- a => b => a -->
-        <pattern id="a" x="0" y="0" width=".25" height=".25">
-            <rect fill="lime" width="100%" height="100%"/>
-            <rect fill="url(#b)" width="100%" height="100%"/>
-        </pattern>
-        <pattern id="b" xlink:href=""
-        
-        <!-- l => m => n => l -->
-        <pattern id="l" x="0" y="0" width=".25" height=".25">
-            <rect fill="lime" width="100%" height="100%"/>
-            <rect fill="url(#m)" width="100%" height="100%"/>
-        </pattern>
-        <pattern id="m" xlink:href=""
-        <pattern id="n" xlink:href=""
-        
-        <!-- p => q -->
-        <pattern id="p" x="0" y="0" width=".25" height=".25">
-            <rect fill="lime" width="100%" height="100%"/>
-            <rect fill="url(#q)" width="100%" height="100%"/>
-        </pattern>
-        <pattern id="q"/>
-        
-        <!-- t => s -->
-        <pattern id="s" x="0" y="0" width=".25" height=".25">
-            <rect fill="lime" width="100%" height="100%"/>
-            <rect id="r" width="100%" height="100%"/>
-        </pattern>
-        <pattern id="t" xlink:href=""
-    </defs>
-    <g fill="none" stroke="black" stroke-width="1">
-        <circle cx="75" cy="75" fill="url(#a)" r="50"/>
-        <circle cx="200" cy="75" fill="url(#b)" r="50"/>
-
-        <circle cx="75" cy="200" fill="url(#l)" r="50"/>
-        <circle cx="200" cy="200" fill="url(#m)" r="50"/>
-        <circle cx="325" cy="200" fill="url(#n)" r="50"/>
-    
-        <circle cx="75" cy="325" fill="url(#p)" r="50"/>
-        <circle cx="200" cy="325" fill="url(#q)" r="50"/>
-    
-        <circle cx="75" cy="450" fill="url(#s)" r="50"/>
-        <circle cx="200" cy="450" fill="url(#t)" r="50"/>
-    </g>
-    <script>
-        // Add q => p to get p => q => p
-        document.getElementById("q").setAttributeNS("http://www.w3.org/1999/xlink", "href", "#p");        
-        
-        // Add s => t to get s => t => s
-        document.getElementById("r").setAttribute("fill", "url(#t)");
-        
-        // Force layout
-        document.documentElement.removeAttribute("class");
-    </script>
-</svg>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to