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

Side by Side Diff: LayoutTests/fast/forms/email-selectapi.html

Issue 100433008: Disable select api for input type number and email (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years 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>
tkent 2013/12/13 00:07:29 You don't need to add new test files. Please add
Habib Virji 2013/12/13 12:05:04 Done.
2 <html>
3 <head>
4 <script src="../../resources/js-test.js"></script>
5 </head>
6 <body>
7 <input id='email' type=email>
8 <script>
9 description("Test selectionStart() method support in input type email.");
10
11 debug('Checking input type email support for selectionStart:');
12 shouldThrow('document.getElementById("email").selectionStart = 0');
13
14 debug('Checking input type email support for selectionEnd:');
15 shouldThrow('document.getElementById("email").selectionEnd');
16
17 </script>
18 </body>
19 </html>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/forms/email-selectapi-expected.txt » ('j') | Source/core/html/HTMLInputElement.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698