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

Side by Side Diff: sky/engine/web/tests/data/move_caret.html

Issue 1210153009: Remove (almost all of) //sky/engine/web (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 5 months 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <input id='target' type='text' value='16-char header. ^^ 16-char footer.'></inpu t>
5 <script>
6 function selectCaret() {
7 var text = document.getElementById('target');
8 text.focus();
9 text.setSelectionRange(17, 17);
10 }
11 function selectRange() {
12 var text = document.getElementById('target');
13 text.focus();
14 text.setSelectionRange(16, 18);
15 }
16 window.onload = select;
17 </script>
18 </body>
19 </html>
20
OLDNEW
« no previous file with comments | « sky/engine/web/tests/data/mhtml/simple_test.mht ('k') | sky/engine/web/tests/data/move_range.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698