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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../../resources/run-after-layout-and-paint.js"></script>
3 <object id=obj>PASS if no crash</object>
4 <div id=move>
5 <span id=target></span>
6 </div>
7 <div id=bdo></div>
8 <style>
9 #move, #obj, #bdo { filter: url(#target); }
10 </style>
11 <script>
12 if (window.testRunner)
13 testRunner.dumpAsText();
14 runAfterLayoutAndPaint(function() {
15 bdo.style.zoom = 2;
16 obj.appendChild(move);
17 }, true);
18 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698