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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/masking/clip-path-reference-nonexisting-existing-local.html

Issue 2174813003: Don't resolve non-local -webkit-clip-path references as local (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@svg-local-references
Patch Set: Created 4 years, 5 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 | third_party/WebKit/LayoutTests/css3/masking/clip-path-reference-nonexisting-existing-local-expected.html » ('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 <!DOCTYPE html>
2 <style>
3 #target {
4 width: 100px;
5 height: 100px;
6 background-color: green;
7 -webkit-clip-path: url(notexisting.svg#c);
8 clip-path: url(notexisting.svg#c);
9 }
10 </style>
11 <div style="background-color: red; width: 100px">
12 <div id="target"></div>
13 </div>
14 <svg>
15 <clipPath id="c" clipPathUnits="objectBoundingBox">
16 <circle cx="0.5" cy="0.5" r="0.5"/>
17 </clipPath>
18 </svg>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/css3/masking/clip-path-reference-nonexisting-existing-local-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698