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

Side by Side Diff: LayoutTests/fast/forms/time-multiple-fields/time-multiple-fields-ax-value-changed-notification.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 <head> 3 <head>
4 <script src="../../../fast/js/resources/js-test-pre.js"></script> 4 <script src="../../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <input id=test type="time" value="12:34:56.789"> 7 <input id=test type="time" value="12:34:56.789">
8 <script> 8 <script>
9 description('This test checks value changed accessibility notifications.'); 9 description('This test checks value changed accessibility notifications.');
10 10
11 function enableAccessibility() 11 function enableAccessibility()
12 { 12 {
13 if (!window.accessibilityController) { 13 if (!window.accessibilityController) {
14 debug("Please run inside DumpRenderTree."); 14 debug("Please run inside DumpRenderTree.");
(...skipping 25 matching lines...) Expand all
40 window.jsTestIsAsync = true; 40 window.jsTestIsAsync = true;
41 41
42 window.setTimeout(function () { 42 window.setTimeout(function () {
43 debug(''); 43 debug('');
44 testInput.parentNode.removeChild(testInput); 44 testInput.parentNode.removeChild(testInput);
45 finishJSTest(); 45 finishJSTest();
46 }, 1); 46 }, 1);
47 </script> 47 </script>
48 </body> 48 </body>
49 </html> 49 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698