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

Side by Side Diff: LayoutTests/fast/forms/input-text-paste-maxlength-expected.txt

Issue 8135023: Merge 96290 - REGRESSION(r93858): Can't type anything into input elements when maxlength is great... (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/874/
Patch Set: Created 9 years, 2 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
1 set value attribute that violates maxlength (with pasted value) 1 set value attribute that violates maxlength (with pasted value)
2 PASS domValueOf('f') is '123' 2 PASS domValueOf('f') is '123'
3 PASS visibleValueOf('f') is '123' 3 PASS visibleValueOf('f') is '123'
4 set value property that violates maxlength (with pasted value) 4 set value property that violates maxlength (with pasted value)
5 PASS domValueOf('e') is '12345' 5 PASS domValueOf('e') is '12345'
6 PASS visibleValueOf('e') is '12345' 6 PASS visibleValueOf('e') is '12345'
7 set maxlength attribute that is smaller than pasted value 7 set maxlength attribute that is smaller than pasted value
8 PASS domValueOf('d') is '12345' 8 PASS domValueOf('d') is '12345'
9 PASS visibleValueOf('d') is '12345' 9 PASS visibleValueOf('d') is '12345'
10 set maxLength property that is smaller than pasted value 10 set maxLength property that is smaller than pasted value
(...skipping 16 matching lines...) Expand all
27 PASS visibleValueOf('k') is '12' + fancyX + '4' 27 PASS visibleValueOf('k') is '12' + fancyX + '4'
28 pasting too much text with maxlength=0 28 pasting too much text with maxlength=0
29 PASS domValueOf('l') is '' 29 PASS domValueOf('l') is ''
30 PASS visibleValueOf('l') is '' 30 PASS visibleValueOf('l') is ''
31 empty maxlength should be ignored. 31 empty maxlength should be ignored.
32 PASS domValueOf('m') is '12' + fancyX + '45' 32 PASS domValueOf('m') is '12' + fancyX + '45'
33 PASS visibleValueOf('m') is '12' + fancyX + '45' 33 PASS visibleValueOf('m') is '12' + fancyX + '45'
34 invalid maxlength should be ignored. 34 invalid maxlength should be ignored.
35 PASS domValueOf('n') is '12' + fancyX + '45' 35 PASS domValueOf('n') is '12' + fancyX + '45'
36 PASS visibleValueOf('n') is '12' + fancyX + '45' 36 PASS visibleValueOf('n') is '12' + fancyX + '45'
37 PASS domValueOf('huge') is '12' + fancyX + '45'
38 PASS visibleValueOf('huge') is '12' + fancyX + '45'
37 PASS successfullyParsed is true 39 PASS successfullyParsed is true
38 40
39 TEST COMPLETE 41 TEST COMPLETE
40 42
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/input-text-paste-maxlength.html ('k') | Source/WebCore/html/parser/HTMLParserIdioms.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698