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

Side by Side Diff: LayoutTests/fast/events/check-defocus-event-order-when-triggered-by-tab.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 <html> 1 <html>
2 <head> 2 <head>
3 <script src="../js/resources/js-test-pre.js"></script> 3 <script src="../../resources/js-test.js"></script>
4 <script src="resources/record-events.js"></script> 4 <script src="resources/record-events.js"></script>
5 <script> 5 <script>
6 if (window.testRunner) 6 if (window.testRunner)
7 testRunner.dumpAsText(); 7 testRunner.dumpAsText();
8 8
9 window.onload = runTest; 9 window.onload = runTest;
10 10
11 function runTest() 11 function runTest()
12 { 12 {
13 if (!window.eventSender) 13 if (!window.eventSender)
(...skipping 20 matching lines...) Expand all
34 <input type="text" id="secondInput" placeholder="second input" /> 34 <input type="text" id="secondInput" placeholder="second input" />
35 </div> 35 </div>
36 <div id="console"></div> 36 <div id="console"></div>
37 <script> 37 <script>
38 description("This test checks that when a user focuses on the &quot;first in put&quot; text field, modifies its contents, and then " + 38 description("This test checks that when a user focuses on the &quot;first in put&quot; text field, modifies its contents, and then " +
39 "defocuses it by pressing the tab key that the following DOM eve nts are fired in order: Focus, Change, Blur, Focus " + 39 "defocuses it by pressing the tab key that the following DOM eve nts are fired in order: Focus, Change, Blur, Focus " +
40 "(on &quot;second input&quot;). Note, this test must be run by D ump Render Tree."); 40 "(on &quot;second input&quot;). Note, this test must be run by D ump Render Tree.");
41 </script> 41 </script>
42 </body> 42 </body>
43 </html> 43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698