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

Side by Side Diff: LayoutTests/svg/custom/gradient-containing-disallow-elements.svg

Issue 622653003: Gradients should restrict possible content (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch for landing Created 6 years, 2 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
« no previous file with comments | « no previous file | LayoutTests/svg/custom/gradient-containing-disallow-elements-expected.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <?xml version="1.0" encoding="UTF-8"?>
2 <svg xmlns="http://www.w3.org/2000/svg">
3 <title id="test-title">gradient containing disallowed elements</title>
4 <linearGradient id="grad1" gradientUnits="objectBoundingBox" x1="0" y1="0" x2= "1" y2="0">
5 <stop stop-color="blue" offset="0"/>
6 <stop stop-color="red" offset="1"/>
7 <rect width="100" height="100" fill="red"/>
8 <g>
9 <foreignObject/>
10 </g>
11 <linearGradient id="grad2" gradientUnits="objectBoundingBox" x1="0" y1="0" x 2="1" y2="0">
12 <stop stop-color="green" offset="0"/>
13 <stop stop-color="purple" offset="1"/>
14 </linearGradient>
15 </linearGradient>
16 <rect x="20" y="10" width="440" height="30" fill="url(#grad1)" />
17 <rect x="20" y="50" width="440" height="30" fill="url(#grad2)" />
18 </svg>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/svg/custom/gradient-containing-disallow-elements-expected.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698