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

Side by Side Diff: LayoutTests/fast/events/flags-unset-on-init-event.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 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <script src="../js/resources/js-test-pre.js"></script> 5 <script src="../js/resources/js-test-pre.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <input id=target type=text value=""> 8 <input id=target type=text value="">
9 <script> 9 <script>
10 description("An event's 'stop propagation', 'stop immediate propagation' and 'ca nceled' flags should be unset in initEvent"); 10 description("An event's 'stop propagation', 'stop immediate propagation' and 'ca nceled' flags should be unset in initEvent");
(...skipping 18 matching lines...) Expand all
29 // This function will run if the propagation flags were reset properly on 29 // This function will run if the propagation flags were reset properly on
30 // the second call to initEvent. 30 // the second call to initEvent.
31 finishJSTest(); 31 finishJSTest();
32 }, false); 32 }, false);
33 33
34 target.dispatchEvent(e); 34 target.dispatchEvent(e);
35 35
36 target.parentNode.removeChild(target); 36 target.parentNode.removeChild(target);
37 37
38 </script> 38 </script>
39 <script src="../js/resources/js-test-post.js"></script>
40 </body> 39 </body>
41 </html> 40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698