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

Side by Side Diff: LayoutTests/svg/custom/invalid-fill.svg

Issue 593173002: Change SVG paint server fallback for a non-existent URL (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Adjust tests. Created 6 years, 3 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 <?xml version="1.0" encoding="UTF-8"?>
2 <svg xmlns="http://www.w3.org/2000/svg">
3 <g fill="orange">
4 <rect width="100" height="100" fill="red"/>
5 <rect width="100" height="100" fill="url(#notthere)"/>
6 <g fill="black">
7 <text x="10" y="130">The above rect should be ORANGE.</text>
8 <text x="10" y="150">SVG 1.1 FULL says there should be a "highly perceivab le error" message when an invalid fill is used.</text>
9 <text x="10" y="170">Browsers don't display such an error, instead use som e sort of fill-fallback.</text>
10 <text x="10" y="190">If there's an non-existent uri, but no fallback speci fied, the fill of the object is inherited from parent object.</text>
11 <text x="10" y="210">This has recently been changed in SVG 1.1 2nd edition . Our result matches Opera now.</text>
12 </g>
13 </g>
14 </svg>
OLDNEW
« no previous file with comments | « LayoutTests/svg/custom/fill-fallback-invalid-uri-expected.html ('k') | LayoutTests/svg/custom/invalid-fill-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698