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

Side by Side Diff: LayoutTests/fast/forms/suggested-value-expected.txt

Issue 138433002: Add Autofill preview support for <select> input fields (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 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
« no previous file with comments | « LayoutTests/fast/forms/suggested-value.html ('k') | Source/core/css/html.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 This test setting suggested values on an input element 1 This test setting suggested values on an input element
2 and a textarea element. The dump below should have the "suggested value" 2 and a textarea element. The dump below should have the "suggested value"
3 instead of "initial value". 3 instead of "initial value".
4 | <input> 4 | <input>
5 | id="test" 5 | id="test"
6 | type="text" 6 | type="text"
7 | value="initial value" 7 | value="initial value"
8 | this.value="initial value" 8 | this.value="initial value"
9 | <shadow:root> 9 | <shadow:root>
10 | <div> 10 | <div>
11 | id="inner-editor" 11 | id="inner-editor"
12 | "suggested value" 12 | "suggested value"
13 | <textarea> 13 | <textarea>
14 | id="textarea" 14 | id="textarea"
15 | this.value="initial value" 15 | this.value="initial value"
16 | <shadow:root> 16 | <shadow:root>
17 | <div> 17 | <div>
18 | id="inner-editor" 18 | id="inner-editor"
19 | "suggested value" 19 | "suggested value"
20 | <select>
21 | id="select"
22 | <option>
23 | "CA"
24 | <option>
25 | "TX"
20 | "input.value: initial value" 26 | "input.value: initial value"
21 | "internals.suggestedValue(input): suggested value" 27 | "internals.suggestedValue(input): suggested value"
22 | "input.selectionStart: 0" 28 | "input.selectionStart: 0"
23 | "input.selectionEnd: 0" 29 | "input.selectionEnd: 0"
24 | "textarea.value: initial value" 30 | "textarea.value: initial value"
25 | "internals.suggestedValue(textarea): suggested value" 31 | "internals.suggestedValue(textarea): suggested value"
32 | "select.value: TX"
tkent 2014/01/14 23:55:08 The value must not be changed even when the sugges
33 | "internals.originalValue(select): "
34 | "internals.suggestedValue(select): TX"
OLDNEW
« no previous file with comments | « LayoutTests/fast/forms/suggested-value.html ('k') | Source/core/css/html.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698