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

Side by Side Diff: LayoutTests/svg/animations/remove-begin-event-crash.html

Issue 145583005: [SVG] Remove existing event listeners when eventBase conditions are cleared (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html onload="tCFcrash();">
Stephen Chennney 2014/01/27 15:24:28 Rename methods and variables to something meaningf
pavane 2014/01/27 17:01:19 Done.
3 <head>
4 <script>
5 function tCFcrash() {
6 tCF4.removeAttribute("begin");
7 tCF4.parentNode.removeChild(tCF4);
8 delete tCF4;
9 }
10 if (window.testRunner)
11 testRunner.dumpAsText();
12 </script>
13 </head>
14 <body>
15 Test for crbug.com/338124: This test passes if it does not crash.<br/>
Stephen Chennney 2014/01/27 15:24:28 We generally do not reference the bug in the test
pavane 2014/01/27 17:01:19 Done.
16 PASS
17 <svg>
18 <animate id="anim" attributeName="visibility" />
19 <set begin="anim.beginEvent" id="tCF4" to="100" attributeName="width" />
20 </svg>
21 </body>
22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698