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

Side by Side Diff: LayoutTests/css3/masking/clip-path-reference-restore.html

Issue 365293002: Restore GC state after painting with a "reference" [url(#foo)] clip-path (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | LayoutTests/css3/masking/clip-path-reference-restore-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 .error {
4 width: 100px;
5 height: 100px;
6 background-color: red;
7 position: absolute;
8 }
9 .test {
10 width: 200px;
11 height: 50px;
12 background-color: green;
13 -webkit-clip-path: url(#c);
14 }
15 </style>
16 <div class="error"></div>
17 <div class="test"></div>
18 <div class="test"></div>
19 <svg>
20 <defs>
21 <clipPath id="c" clipPathUnits="objectBoundingBox">
22 <rect width="0.5" height="1"/>
23 </clipPath>
24 </defs>
25 </svg>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/css3/masking/clip-path-reference-restore-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698