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

Side by Side Diff: LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-localization.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 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <script src="../../js/resources/js-test-pre.js"></script> 5 <script src="../../js/resources/js-test-pre.js"></script>
6 <script src="../resources/common.js"></script> 6 <script src="../resources/common.js"></script>
7 <script> 7 <script>
8 if (window.internals) 8 if (window.internals)
9 internals.settings.setLangAttributeAwareFormControlUIEnabled(true); 9 internals.settings.setLangAttributeAwareFormControlUIEnabled(true);
10 </script> 10 </script>
11 </head> 11 </head>
12 <body> 12 <body>
13 <div id=console></div> 13 <div id=console></div>
14 <input type="time" value="13:23:45.1" lang="en" /><br> 14 <input type="time" value="13:23:45.1" lang="en" /><br>
15 <input type="time" value="13:23:45.1" lang="ar" /><br> 15 <input type="time" value="13:23:45.1" lang="ar" /><br>
16 <input type="time" value="13:23:45.1" lang="fr" /><br> 16 <input type="time" value="13:23:45.1" lang="fr" /><br>
17 <input type="time" value="13:23:45.1" lang="ja" /><br> 17 <input type="time" value="13:23:45.1" lang="ja" /><br>
18 <input type="time" value="13:23:45.1" lang="ko" /><br> 18 <input type="time" value="13:23:45.1" lang="ko" /><br>
19 <input type="time" value="13:23:45.1" lang="cn" /> 19 <input type="time" value="13:23:45.1" lang="cn" />
20 <script> 20 <script>
21 description("Tests the time format for various locales.", true); 21 description("Tests the time format for various locales.", true);
22 debug("The following lines depend on the locale data in the system."); 22 debug("The following lines depend on the locale data in the system.");
23 var inputs = document.getElementsByTagName("input"); 23 var inputs = document.getElementsByTagName("input");
24 for (var i = 0; i < inputs.length; ++i) { 24 for (var i = 0; i < inputs.length; ++i) {
25 debug(inputs[i].lang + ': ' + getUserAgentShadowTextContent(inputs[i])); 25 debug(inputs[i].lang + ': ' + getUserAgentShadowTextContent(inputs[i]));
26 } 26 }
27 </script> 27 </script>
28 <script src="../../js/resources/js-test-post.js"></script>
29 </body> 28 </body>
30 </html> 29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698