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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/domstring-attribute-reflection-expected.txt

Issue 2536993002: Remove support for the keygen tag (Closed)
Patch Set: Rebased Created 3 years, 12 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 CONSOLE WARNING: line 10: The <keygen> element is deprecated and will be removed in M57, around March 2017. See https://www.chromestatus.com/features/5716060992 962560 for more details.
2 Reflected DOMString attribute test for button/@name 1 Reflected DOMString attribute test for button/@name
3 Initial value: 2 Initial value:
4 PASS element.name is "" 3 PASS element.name is ""
5 PASS element.getAttribute("name") is null 4 PASS element.getAttribute("name") is null
6 Setting a value via the IDL attribute: 5 Setting a value via the IDL attribute:
7 PASS element.name = "foo"; element.name is "foo" 6 PASS element.name = "foo"; element.name is "foo"
8 PASS element.getAttribute("name") is "foo" 7 PASS element.getAttribute("name") is "foo"
9 Setting a value via the content attribute: 8 Setting a value via the content attribute:
10 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" 9 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n"
11 PASS element.getAttribute("name") is " bar\n" 10 PASS element.getAttribute("name") is " bar\n"
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 PASS element.setAttribute("step", undefined); element.step is "undefined" 141 PASS element.setAttribute("step", undefined); element.step is "undefined"
143 PASS element.getAttribute("step") is "undefined" 142 PASS element.getAttribute("step") is "undefined"
144 Setting non-string via the IDL attribute: 143 Setting non-string via the IDL attribute:
145 PASS element.step = 123; element.step is "123" 144 PASS element.step = 123; element.step is "123"
146 PASS element.getAttribute("step") is "123" 145 PASS element.getAttribute("step") is "123"
147 Setting non-string via the content attribute: 146 Setting non-string via the content attribute:
148 PASS element.setAttribute("step", 456); element.step is "456" 147 PASS element.setAttribute("step", 456); element.step is "456"
149 PASS element.getAttribute("step") is "456" 148 PASS element.getAttribute("step") is "456"
150 149
151 150
152 Reflected DOMString attribute test for keygen/@name
153 Initial value:
154 PASS element.name is ""
155 PASS element.getAttribute("name") is null
156 Setting a value via the IDL attribute:
157 PASS element.name = "foo"; element.name is "foo"
158 PASS element.getAttribute("name") is "foo"
159 Setting a value via the content attribute:
160 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n"
161 PASS element.getAttribute("name") is " bar\n"
162 Setting null via the IDL attribute:
163 PASS element.name = null; element.name is "null"
164 PASS element.getAttribute("name") is "null"
165 Setting null via the content attribute:
166 PASS element.setAttribute("name", null); element.name is "null"
167 PASS element.getAttribute("name") is "null"
168 Setting undefined via the IDL attribute:
169 PASS element.name = undefined; element.name is "undefined"
170 PASS element.getAttribute("name") is "undefined"
171 Setting undefined via the content attribute:
172 PASS element.setAttribute("name", undefined); element.name is "undefined"
173 PASS element.getAttribute("name") is "undefined"
174 Setting non-string via the IDL attribute:
175 PASS element.name = 123; element.name is "123"
176 PASS element.getAttribute("name") is "123"
177 Setting non-string via the content attribute:
178 PASS element.setAttribute("name", 456); element.name is "456"
179 PASS element.getAttribute("name") is "456"
180
181
182 Reflected DOMString attribute test for menu/@type 151 Reflected DOMString attribute test for menu/@type
183 Initial value: 152 Initial value:
184 PASS element.type is "" 153 PASS element.type is ""
185 PASS element.getAttribute("type") is null 154 PASS element.getAttribute("type") is null
186 Setting a value via the IDL attribute: 155 Setting a value via the IDL attribute:
187 PASS element.type = "foo"; element.type is "foo" 156 PASS element.type = "foo"; element.type is "foo"
188 PASS element.getAttribute("type") is "foo" 157 PASS element.getAttribute("type") is "foo"
189 Setting a value via the content attribute: 158 Setting a value via the content attribute:
190 PASS element.setAttribute("type", " bar\n"); element.type is " bar\n" 159 PASS element.setAttribute("type", " bar\n"); element.type is " bar\n"
191 PASS element.getAttribute("type") is " bar\n" 160 PASS element.getAttribute("type") is " bar\n"
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after
926 PASS element.getAttribute("bgcolor") is "123" 895 PASS element.getAttribute("bgcolor") is "123"
927 Setting non-string via the content attribute: 896 Setting non-string via the content attribute:
928 PASS element.setAttribute("bgcolor", 456); element.bgColor is "456" 897 PASS element.setAttribute("bgcolor", 456); element.bgColor is "456"
929 PASS element.getAttribute("bgcolor") is "456" 898 PASS element.getAttribute("bgcolor") is "456"
930 899
931 900
932 PASS successfullyParsed is true 901 PASS successfullyParsed is true
933 902
934 TEST COMPLETE 903 TEST COMPLETE
935 904
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698