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

Side by Side Diff: LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-tabindex.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 <body> 3 <body>
4 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../../resources/js-test.js"></script>
5 <script src="../resources/common.js"></script> 5 <script src="../resources/common.js"></script>
6 6
7 <input id="tabindex30" tabindex="30"> 7 <input id="tabindex30" tabindex="30">
8 <input id="tabindex20-1" tabindex="20"> 8 <input id="tabindex20-1" tabindex="20">
9 <input id="time-with-tabindex20" tabindex="20" type="time"> 9 <input id="time-with-tabindex20" tabindex="20" type="time">
10 <input id="tabindex20-3" tabindex="20"> 10 <input id="tabindex20-3" tabindex="20">
11 <input id="tabindex10" tabindex="10"> 11 <input id="tabindex10" tabindex="10">
12 12
13 <script> 13 <script>
14 if (!window.eventSender || !window.internals) 14 if (!window.eventSender || !window.internals)
(...skipping 20 matching lines...) Expand all
35 shouldBeEqualToString('eventSender.keyDown(tab, shift); document.activeElement.i d', 'tabindex20-3'); 35 shouldBeEqualToString('eventSender.keyDown(tab, shift); document.activeElement.i d', 'tabindex20-3');
36 shouldBeEqualToString('eventSender.keyDown(tab, shift); document.activeElement.i d', 'time-with-tabindex20'); 36 shouldBeEqualToString('eventSender.keyDown(tab, shift); document.activeElement.i d', 'time-with-tabindex20');
37 shouldBe('shadowRoot.activeElement.getAttribute("part")', 'lastSubField'); 37 shouldBe('shadowRoot.activeElement.getAttribute("part")', 'lastSubField');
38 shouldBe('eventSender.keyDown(tab, shift); eventSender.keyDown(tab, shift); shad owRoot.activeElement.getAttribute("part")', 'firstSubField'); 38 shouldBe('eventSender.keyDown(tab, shift); eventSender.keyDown(tab, shift); shad owRoot.activeElement.getAttribute("part")', 'firstSubField');
39 shouldBeEqualToString('eventSender.keyDown(tab, shift); document.activeElement.i d', 'tabindex20-1'); 39 shouldBeEqualToString('eventSender.keyDown(tab, shift); document.activeElement.i d', 'tabindex20-1');
40 40
41 41
42 </script> 42 </script>
43 </body> 43 </body>
44 </html> 44 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698