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

Side by Side Diff: LayoutTests/fast/events/event-listener-map-rehash-crash.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../js/resources/js-test-pre.js"></script> 3 <script src="../js/resources/js-test-pre.js"></script>
4 <script> 4 <script>
5 function stub() {} 5 function stub() {}
6 6
7 document.addEventListener("DOMContentLoaded", function() 7 document.addEventListener("DOMContentLoaded", function()
8 { 8 {
9 for (var i = 0; i < 50; ++i) 9 for (var i = 0; i < 50; ++i)
10 document.addEventListener("boom" + i, stub, false); 10 document.addEventListener("boom" + i, stub, false);
11 }, false); 11 }, false);
12 12
13 document.addEventListener("DOMContentLoaded", stub); 13 document.addEventListener("DOMContentLoaded", stub);
14 </script> 14 </script>
15 </head> 15 </head>
16 <body> 16 <body>
17 <script> 17 <script>
18 description("Ensures that rehashing of events map doesn't leave us with a da ngling event list reference."); 18 description("Ensures that rehashing of events map doesn't leave us with a da ngling event list reference.");
19 testPassed("Did not crash."); 19 testPassed("Did not crash.");
20 </script> 20 </script>
21 <script src="../js/resources/js-test-post.js"></script>
22 </body> 21 </body>
23 </html> 22 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698