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

Side by Side Diff: LayoutTests/fast/events/scroll-event-phase.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 <script src="../js/resources/js-test-pre.js"></script> 2 <script src="../js/resources/js-test-pre.js"></script>
3 <body style="min-height: 2000px"> 3 <body style="min-height: 2000px">
4 4
5 <script type="text/javascript"> 5 <script type="text/javascript">
6 description('Tests that we can listen for scroll events on the document in both the capture and bubble phases.'); 6 description('Tests that we can listen for scroll events on the document in both the capture and bubble phases.');
7 7
8 var triggeredCaptureListener = false; 8 var triggeredCaptureListener = false;
9 var triggeredBubbleListener = false; 9 var triggeredBubbleListener = false;
10 10
(...skipping 17 matching lines...) Expand all
28 { 28 {
29 if (triggeredCaptureListener && triggeredBubbleListener) { 29 if (triggeredCaptureListener && triggeredBubbleListener) {
30 debug('Both capture and bubble phase listeners were invoked.'); 30 debug('Both capture and bubble phase listeners were invoked.');
31 finishJSTest(); 31 finishJSTest();
32 } 32 }
33 } 33 }
34 34
35 window.scrollTo(200, 200); 35 window.scrollTo(200, 200);
36 var jsTestIsAsync = true; 36 var jsTestIsAsync = true;
37 </script> 37 </script>
38 <script src="../js/resources/js-test-post.js"></script>
39 </body> 38 </body>
40 </html> 39 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/events/scroll-event-during-modal-dialog.html ('k') | LayoutTests/fast/events/select-element.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698