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

Side by Side Diff: LayoutTests/fast/forms/suggestion-picker/date-suggestion-picker-reset-value-after-reload.html

Issue 484353004: Test tidying: use "escape" and "backspace" with eventSender.keyDown() (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: More quoting consistency wibbles Created 6 years, 4 months 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../../resources/js-test.js"></script> 4 <script src="../../../resources/js-test.js"></script>
5 <script src="../../forms/resources/picker-common.js"></script> 5 <script src="../../forms/resources/picker-common.js"></script>
6 <script src="resources/suggestion-picker-common.js"></script> 6 <script src="resources/suggestion-picker-common.js"></script>
7 </head> 7 </head>
8 <body> 8 <body>
9 <script> 9 <script>
10 description('Checks reloading page resets input values'); 10 description('Checks reloading page resets input values');
11 11
12 var iframe; 12 var iframe;
13 var testInput1; 13 var testInput1;
14 var testInput2; 14 var testInput2;
15 15
16 function runOnOpenPopup1() { 16 function runOnOpenPopup1() {
17 iframe = document.getElementById('iframe'); 17 iframe = document.getElementById('iframe');
18 18
19 popupWindow.focus(); 19 popupWindow.focus();
20 20
21 shouldBeNull('highlightedEntry()'); 21 shouldBeNull('highlightedEntry()');
22 eventSender.keyDown('downArrow'); 22 eventSender.keyDown('downArrow');
23 shouldBe('highlightedEntry()', '"2012-01-01"'); 23 shouldBeEqualToString('highlightedEntry()', '2012-01-01');
24 eventSender.keyDown("\n"); 24 eventSender.keyDown("\n");
25 waitUntilClosing(runOnOpenPopup1AfterClosing); 25 waitUntilClosing(runOnOpenPopup1AfterClosing);
26 } 26 }
27 27
28 function runOnOpenPopup1AfterClosing() { 28 function runOnOpenPopup1AfterClosing() {
29 shouldBeNull('document.getElementById("mock-page-popup")'); 29 shouldBeNull('document.getElementById("mock-page-popup")');
30 shouldBe('iframe.contentDocument.getElementById("test1").value', '"2012-01-0 1"'); 30 shouldBeEqualToString('iframe.contentDocument.getElementById("test1").value' , '2012-01-01');
31 31
32 openPicker(iframe.contentDocument.getElementById('test2'), runOnOpenPopup2); 32 openPicker(iframe.contentDocument.getElementById('test2'), runOnOpenPopup2);
33 } 33 }
34 34
35 function runOnOpenPopup2() { 35 function runOnOpenPopup2() {
36 popupWindow.focus(); 36 popupWindow.focus();
37 37
38 shouldBeNull('highlightedEntry()'); 38 shouldBeNull('highlightedEntry()');
39 eventSender.keyDown('downArrow'); 39 eventSender.keyDown('downArrow');
40 shouldBe('highlightedEntry()', '"2012-01-01"'); 40 shouldBeEqualToString('highlightedEntry()', '2012-01-01');
41 eventSender.keyDown("\n"); 41 eventSender.keyDown("\n");
42 waitUntilClosing(runOnOpenPopup2AfterClosing); 42 waitUntilClosing(runOnOpenPopup2AfterClosing);
43 } 43 }
44 44
45 function runOnOpenPopup2AfterClosing() { 45 function runOnOpenPopup2AfterClosing() {
46 shouldBeNull('document.getElementById("mock-page-popup")'); 46 shouldBeNull('document.getElementById("mock-page-popup")');
47 shouldBe('iframe.contentDocument.getElementById("test2").value', '"2012-01-0 1"'); 47 shouldBeEqualToString('iframe.contentDocument.getElementById("test2").value' , '2012-01-01');
48 48
49 iframe.addEventListener("load", function () { parent.runOnIFrameLoad(); }); 49 iframe.addEventListener("load", function () { parent.runOnIFrameLoad(); });
50 iframe.contentWindow.location.reload(); 50 iframe.contentWindow.location.reload();
51 } 51 }
52 52
53 function runOnIFrameLoad() 53 function runOnIFrameLoad()
54 { 54 {
55 testInput1 = iframe.contentDocument.getElementById('test1'); 55 testInput1 = iframe.contentDocument.getElementById('test1');
56 testInput2 = iframe.contentDocument.getElementById('test2'); 56 testInput2 = iframe.contentDocument.getElementById('test2');
57 shouldBeEqualToString('testInput1.value', ''); 57 shouldBeEqualToString('testInput1.value', '');
58 shouldBeEqualToString('testInput2.value', '2002-02-02'); 58 shouldBeEqualToString('testInput2.value', '2002-02-02');
59 iframe.parentNode.removeChild(iframe); 59 iframe.parentNode.removeChild(iframe);
60 waitUntilClosing(finishJSTest); 60 waitUntilClosing(finishJSTest);
61 } 61 }
62 </script> 62 </script>
63 <iframe id=iframe onload="openPicker(event.target.contentDocument.getElementById ('test1'), runOnOpenPopup1);" srcdoc="<input type=date id=test1 list=suggestions ><input type=date id=test2 value=2002-02-02 list=suggestions><datalist id=sugges tions><option>2012-01-01</option></datalist>"></iframe> 63 <iframe id=iframe onload="openPicker(event.target.contentDocument.getElementById ('test1'), runOnOpenPopup1);" srcdoc="<input type=date id=test1 list=suggestions ><input type=date id=test2 value=2002-02-02 list=suggestions><datalist id=sugges tions><option>2012-01-01</option></datalist>"></iframe>
64 </body> 64 </body>
65 </html> 65 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698