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

Unified Diff: third_party/WebKit/LayoutTests/css3/masking/clip-path-reference-mutated.html

Issue 2484153003: Use an SVGElementProxy in ReferenceClipPathOperation (Closed)
Patch Set: Rebase; fix comments; findElement Created 4 years, 1 month 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 | third_party/WebKit/LayoutTests/css3/masking/clip-path-reference-mutated-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/css3/masking/clip-path-reference-mutated.html
diff --git a/third_party/WebKit/LayoutTests/css3/masking/clip-path-reference-mutated.html b/third_party/WebKit/LayoutTests/css3/masking/clip-path-reference-mutated.html
new file mode 100644
index 0000000000000000000000000000000000000000..fc4e61d76918a086d4b82d7bdbf920de5e81c66a
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/css3/masking/clip-path-reference-mutated.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<script src="../../resources/run-after-layout-and-paint.js"></script>
+<style>
+#target {
+ width: 100px;
+ height: 100px;
+ background-color: green;
+ clip-path: url(#clip);
+}
+</style>
+<div id="target"></div>
+<svg height="0" width="0">
+ <defs>
+ <clipPath id="clip" clipPathUnits="objectBoundingBox">
+ <circle cx="0.5" cy="0.5" r="0.25"></circle>
+ </clipPath>
+ </defs>
+</svg>
+<script>
+runAfterLayoutAndPaint(function() {
+ document.querySelector('circle').setAttribute('r', 1);
+}, true);
+</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/css3/masking/clip-path-reference-mutated-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698