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

Side by Side Diff: LayoutTests/fast/dom/HTMLDialogElement/inert-inlines.html

Issue 58533003: Move fast/js/resources files to resources. (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 dialog { 5 dialog {
6 width: 50px; 6 width: 50px;
7 } 7 }
8 </style> 8 </style>
9 <script src="../../js/resources/js-test-pre.js"></script> 9 <script src="../../../resources/js-test.js"></script>
10 </head> 10 </head>
11 <body> 11 <body>
12 <a id="a" href="javascript:void(0)">Click me</a> 12 <a id="a" href="javascript:void(0)">Click me</a>
13 <button id="button">Click me</button> 13 <button id="button">Click me</button>
14 <div id="div" style="background-color: blue; width: 50px; height: 50px">Click me eee</div> 14 <div id="div" style="background-color: blue; width: 50px; height: 50px">Click me eee</div>
15 <span id="span">Click me</span> 15 <span id="span">Click me</span>
16 <div id="dialog-parent" style="width: 50px; height: 50px"> 16 <div id="dialog-parent" style="width: 50px; height: 50px">
17 <span id="dialog-sibling">Click meeee</span> 17 <span id="dialog-sibling">Click meeee</span>
18 <dialog></dialog> 18 <dialog></dialog>
19 </div> 19 </div>
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 inertElementFiredOn = false; 70 inertElementFiredOn = false;
71 expectedTarget.firedOn = false; 71 expectedTarget.firedOn = false;
72 debug('clicking on ' + id); 72 debug('clicking on ' + id);
73 clickOn(element); 73 clickOn(element);
74 shouldBeFalse('inertElementFiredOn'); 74 shouldBeFalse('inertElementFiredOn');
75 shouldBeTrue('expectedTarget.firedOn'); 75 shouldBeTrue('expectedTarget.firedOn');
76 }); 76 });
77 </script> 77 </script>
78 </body> 78 </body>
79 </html> 79 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698