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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/css3/masking/clip-path-reference-restore-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/css3/masking/clip-path-reference-restore.html
diff --git a/LayoutTests/css3/masking/clip-path-reference-restore.html b/LayoutTests/css3/masking/clip-path-reference-restore.html
new file mode 100644
index 0000000000000000000000000000000000000000..96b104d2b7252cfd6fee0d4b81534dc76611a69b
--- /dev/null
+++ b/LayoutTests/css3/masking/clip-path-reference-restore.html
@@ -0,0 +1,25 @@
+<!DOCTYPE html>
+<style>
+.error {
+ width: 100px;
+ height: 100px;
+ background-color: red;
+ position: absolute;
+}
+.test {
+ width: 200px;
+ height: 50px;
+ background-color: green;
+ -webkit-clip-path: url(#c);
+}
+</style>
+<div class="error"></div>
+<div class="test"></div>
+<div class="test"></div>
+<svg>
+ <defs>
+ <clipPath id="c" clipPathUnits="objectBoundingBox">
+ <rect width="0.5" height="1"/>
+ </clipPath>
+ </defs>
+</svg>
« 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