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

Side by Side Diff: third_party/WebKit/LayoutTests/platform/win/fast/forms/suggested-value-expected.txt

Issue 2027053003: Rebaseline tests on Win10 for crbug.com/521730 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 This test setting suggested values on an input element
2 and a textarea element. The dump below should have the "suggested value"
3 instead of "initial value".
4 | <input>
5 | id="test"
6 | type="text"
7 | value="initial value"
8 | this.value="initial value"
9 | <shadow:root>
10 | <div>
11 | id="inner-editor"
12 | "suggested value"
13 | <input>
14 | id="month"
15 | type="month"
16 | this.value=""
17 | <shadow:root>
18 | <div>
19 | datetimeformat="MMMM, yyyy"
20 | id="date-time-edit"
21 | pseudo="-webkit-datetime-edit"
22 | shadow:pseudoId="-webkit-datetime-edit"
23 | <div>
24 | pseudo="-webkit-datetime-edit-fields-wrapper"
25 | shadow:pseudoId="-webkit-datetime-edit-fields-wrapper"
26 | <span>
27 | aria-help="Month"
28 | aria-valuemax="12"
29 | aria-valuemin="1"
30 | aria-valuenow="1"
31 | aria-valuetext="January"
32 | pseudo="-webkit-datetime-edit-month-field"
33 | role="spinbutton"
34 | shadow:pseudoId="-webkit-datetime-edit-month-field"
35 | "January"
36 | <div>
37 | pseudo="-webkit-datetime-edit-text"
38 | shadow:pseudoId="-webkit-datetime-edit-text"
39 | ", "
40 | <span>
41 | aria-help="Year"
42 | aria-valuemax="275760"
43 | aria-valuemin="1"
44 | aria-valuenow="2014"
45 | aria-valuetext="2014"
46 | pseudo="-webkit-datetime-edit-year-field"
47 | role="spinbutton"
48 | shadow:pseudoId="-webkit-datetime-edit-year-field"
49 | "2014"
50 | <div>
51 | id="clear"
52 | pseudo="-webkit-clear-button"
53 | style=""
54 | shadow:pseudoId="-webkit-clear-button"
55 | <div>
56 | id="spin"
57 | pseudo="-webkit-inner-spin-button"
58 | shadow:pseudoId="-webkit-inner-spin-button"
59 | <div>
60 | id="picker"
61 | pseudo="-webkit-calendar-picker-indicator"
62 | shadow:pseudoId="-webkit-calendar-picker-indicator"
63 | <textarea>
64 | id="textarea"
65 | this.value="initial value"
66 | <shadow:root>
67 | <div>
68 | id="inner-editor"
69 | "suggested value"
70 | <select>
71 | id="select"
72 | <option>
73 | "CA"
74 | <shadow:root>
75 | "CA"
76 | <option>
77 | "TX"
78 | <shadow:root>
79 | "TX"
80 | <shadow:root>
81 | <content>
82 | select="option,optgroup,hr"
83 | "input.value: initial value"
84 | "internals.suggestedValue(input): suggested value"
85 | "input.selectionStart: 0"
86 | "input.selectionEnd: 0"
87 | "month.value: "
88 | "internals.suggestedValue(month): 2014-01"
89 | "textarea.value: initial value"
90 | "internals.suggestedValue(textarea): suggested value"
91 | "select.value: "
92 | "internals.suggestedValue(select): TX"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698