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

Side by Side Diff: LayoutTests/fast/dom/HTMLDialogElement/modal-dialog-blocks-mouse-events.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 <style> 4 <style>
5 #inert-div { 5 #inert-div {
6 height: 100px; 6 height: 100px;
7 width: 100px; 7 width: 100px;
8 background: blue; 8 background: blue;
9 } 9 }
10 10
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 debug('Clicking on inert box'); 94 debug('Clicking on inert box');
95 clickOn(inertDiv); 95 clickOn(inertDiv);
96 shouldBeFalse('inertDiv.firedOn'); 96 shouldBeFalse('inertDiv.firedOn');
97 shouldBe('Object.keys(body.firedOnEvents).length', 'events.length'); 97 shouldBe('Object.keys(body.firedOnEvents).length', 'events.length');
98 98
99 debug('Clicking on non-inert box'); 99 debug('Clicking on non-inert box');
100 clickOn(dialogDiv); 100 clickOn(dialogDiv);
101 shouldBeFalse('inertDiv.firedOn'); 101 shouldBeFalse('inertDiv.firedOn');
102 shouldBe('Object.keys(dialogDiv.firedOnEvents).length', 'events.length'); 102 shouldBe('Object.keys(dialogDiv.firedOnEvents).length', 'events.length');
103 </script> 103 </script>
104 <script src="../../js/resources/js-test-post.js"></script>
105 </body> 104 </body>
106 </html> 105 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698