+2006-09-24 Eric Seidel <eric@eseidel.com>
+
+ Reviewed by beth.
+
+ Browsers disagree on behavior for an invalid fill
+ http://bugzilla.opendarwin.org/show_bug.cgi?id=11017
+
+ * svg/custom/invalid-fill-expected.checksum: Added.
+ * svg/custom/invalid-fill-expected.png: Added.
+ * svg/custom/invalid-fill-expected.txt: Added.
+ * svg/custom/invalid-fill.svg: Added.
+
2006-09-24 Eric Seidel <eric@eseidel.com>
Reviewed by hyatt.
--- /dev/null
+layer at (0,0) size 800x600
+ RenderView at (0,0) size 800x600
+ KCanvasContainer {svg} at (0,0) size 100x100
+ KCanvasContainer {g} at (0,0) size 100x100
+ KCanvasItem {rect} at (0,0) size 100x100 [fill={[type=SOLID] [color=#008000]}] [data="M0.00,0.00L100.00,0.00L100.00,100.00L0.00,100.00"]
+ KCanvasItem {rect} at (0,0) size 100x100 [data="M0.00,0.00L100.00,0.00L100.00,100.00L0.00,100.00"]
+ KCanvasContainer {g} at (0,0) size 0x0
+ RenderSVGText {text} at (0,0) size 800x18
+ RenderText {#text} at (0,0) size 667x18
+ text run at (0,0) width 667: "SVG 1.1 FULL says there should be a \"highly perceivable error\" message when an invalid fill url is used."
+ RenderSVGText {text} at (0,0) size 800x18
+ RenderText {#text} at (0,0) size 468x18
+ text run at (0,0) width 468: "Browsers don't display such an error, instead use some sort of fill-fallback."
+ RenderSVGText {text} at (0,0) size 800x18
+ RenderText {#text} at (0,0) size 636x18
+ text run at (0,0) width 561: "Opera falls back to 'black' (default), Firefox to 'none', and Safari to 'none' (as of writing). "
+ text run at (561,0) width 75: "Bug 11017."
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg">
+ <g fill="red">
+ <rect width="100" height="100" fill="green"/>
+ <rect width="100" height="100" fill="url(#notthere)"/>
+ <g fill="black">
+ <text x="10" y="130">SVG 1.1 FULL says there should be a "highly perceivable error" message when an invalid fill url is used.</text>
+ <text x="10" y="150">Browsers don't display such an error, instead use some sort of fill-fallback.</text>
+ <text x="10" y="170">Opera falls back to 'black' (default), Firefox to 'none', and Safari to 'none' (as of writing). Bug 11017.</text>
+ </g>
+ </g>
+</svg>