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

Side by Side Diff: LayoutTests/fast/dom/HTMLDialogElement/non-modal-dialog-does-not-block-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 #div { 5 #div {
6 height: 100px; 6 height: 100px;
7 width: 100px; 7 width: 100px;
8 background: red; 8 background: red;
9 } 9 }
10 </style> 10 </style>
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 div.firedOn = false; 46 div.firedOn = false;
47 div.addEventListener('click', function(event) { 47 div.addEventListener('click', function(event) {
48 div.firedOn = true; 48 div.firedOn = true;
49 div.style.backgroundColor = 'green'; 49 div.style.backgroundColor = 'green';
50 }); 50 });
51 51
52 clickOn(div); 52 clickOn(div);
53 53
54 shouldBeTrue('div.firedOn'); 54 shouldBeTrue('div.firedOn');
55 </script> 55 </script>
56 <script src="../../js/resources/js-test-post.js"></script>
57 </body> 56 </body>
58 </html> 57 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698