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

Side by Side Diff: LayoutTests/fast/forms/search-disabled-readonly.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="../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 </head> 6 </head>
7 <body> 7 <body>
8 <input id="search_input" type="search" /> 8 <input id="search_input" type="search" />
9 <div id="console"> 9 <div id="console">
10 <p> 10 <p>
11 This tests the behavior of a cancel button in search input forms. 11 This tests the behavior of a cancel button in search input forms.
12 </p> 12 </p>
13 </div> 13 </div>
14 <script> 14 <script>
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 shouldBe('input.value', '"foo"'); 118 shouldBe('input.value', '"foo"');
119 debug("... and then input one character:"); 119 debug("... and then input one character:");
120 keydown("b"); 120 keydown("b");
121 shouldBe('input.value', '"foo"'); 121 shouldBe('input.value', '"foo"');
122 122
123 debug(""); 123 debug("");
124 } 124 }
125 </script> 125 </script>
126 </body> 126 </body>
127 </html> 127 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698