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

Side by Side Diff: LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-reset-value-after-reload.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 <script src="../../../fast/js/resources/js-test-pre.js"></script> 4 <script src="../../../fast/js/resources/js-test-pre.js"></script>
5 </head> 5 </head>
6 <body onload="runBodyLoaded()"> 6 <body onload="runBodyLoaded()">
7 <iframe id=iframe srcdoc="<input type=time id=test1><input type=time id=test2 va lue=02:02>"></iframe> 7 <iframe id=iframe srcdoc="<input type=time id=test1><input type=time id=test2 va lue=02:02>"></iframe>
8 <script> 8 <script>
9 description('Checks reloading page resets input values'); 9 description('Checks reloading page resets input values');
10 window.jsTestIsAsync = true; 10 window.jsTestIsAsync = true;
(...skipping 13 matching lines...) Expand all
24 function runOnIFrameLoad() 24 function runOnIFrameLoad()
25 { 25 {
26 testInput1 = iframe.contentDocument.getElementById('test1'); 26 testInput1 = iframe.contentDocument.getElementById('test1');
27 testInput2 = iframe.contentDocument.getElementById('test2'); 27 testInput2 = iframe.contentDocument.getElementById('test2');
28 shouldBeEqualToString('testInput1.value', ''); 28 shouldBeEqualToString('testInput1.value', '');
29 shouldBeEqualToString('testInput2.value', '02:02'); 29 shouldBeEqualToString('testInput2.value', '02:02');
30 iframe.parentNode.removeChild(iframe); 30 iframe.parentNode.removeChild(iframe);
31 finishJSTest(); 31 finishJSTest();
32 } 32 }
33 </script> 33 </script>
34 <script src="../../../fast/js/resources/js-test-post.js"></script>
35 </body> 34 </body>
36 </html> 35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698