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

Unified Diff: third_party/WebKit/LayoutTests/css3/filters/multiple-references-id-mutate-crash-2.html

Issue 2490163002: Reland of "Tracking reference filter mutation via SVGElementProxy" (Closed)
Patch Set: Fix double observer unregistration; simplify scope selection; add tests 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
Index: third_party/WebKit/LayoutTests/css3/filters/multiple-references-id-mutate-crash-2.html
diff --git a/third_party/WebKit/LayoutTests/css3/filters/multiple-references-id-mutate-crash-2.html b/third_party/WebKit/LayoutTests/css3/filters/multiple-references-id-mutate-crash-2.html
new file mode 100644
index 0000000000000000000000000000000000000000..9aedb1fcc0d85f3e321ed57beccba3390eb780f9
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/css3/filters/multiple-references-id-mutate-crash-2.html
@@ -0,0 +1,18 @@
+<!DOCTYPE html>
+<script src="../../resources/run-after-layout-and-paint.js"></script>
+<object id=obj>PASS if no crash</object>
+<div id=move>
+ <span id=target></span>
+</div>
+<div id=bdo></div>
+<style>
+#move, #obj, #bdo { filter: url(#target); }
+</style>
+<script>
+if (window.testRunner)
+ testRunner.dumpAsText();
+runAfterLayoutAndPaint(function() {
+ bdo.style.zoom = 2;
+ obj.appendChild(move);
+}, true);
+</script>

Powered by Google App Engine
This is Rietveld 408576698