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

Side by Side Diff: LayoutTests/fast/forms/input-text-paste-maxlength.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 PUBLIC "-//IETF//DTD HTML//EN"> 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
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 <p id="description"></p> 7 <p id="description"></p>
8 <div id="console"></div> 8 <div id="console"></div>
9 9
10 <div id=container> 10 <div id=container>
11 <input type="text" id="f" size="5" maxlength="4"> 11 <input type="text" id="f" size="5" maxlength="4">
12 <input type="text" id="e" size="5" maxlength="4"> 12 <input type="text" id="e" size="5" maxlength="4">
13 <input type="text" id="d" size="5"> 13 <input type="text" id="d" size="5">
14 <input type="text" id="c" size="5"> 14 <input type="text" id="c" size="5">
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 shouldBe("visibleValueOf('n')", "'12' + fancyX + '45'"); 129 shouldBe("visibleValueOf('n')", "'12' + fancyX + '45'");
130 document.getElementById("huge").focus(); 130 document.getElementById("huge").focus();
131 document.execCommand("InsertHTML", false, "12x&#x305;&#x332;45"); 131 document.execCommand("InsertHTML", false, "12x&#x305;&#x332;45");
132 shouldBe("domValueOf('huge')", "'12' + fancyX + '45'"); 132 shouldBe("domValueOf('huge')", "'12' + fancyX + '45'");
133 shouldBe("visibleValueOf('huge')", "'12' + fancyX + '45'"); 133 shouldBe("visibleValueOf('huge')", "'12' + fancyX + '45'");
134 134
135 document.getElementById('container').innerHTML = ''; 135 document.getElementById('container').innerHTML = '';
136 </script> 136 </script>
137 </body> 137 </body>
138 </html> 138 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/input-text-maxlength.html ('k') | LayoutTests/fast/forms/input-type-change.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698