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

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

Issue 99313002: Remove TreatNullAs=NullString for HTMLOutputElement (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | Annotate | Revision Log
OLDNEW
1 Reflected DOMString attribute test for button/@name 1 Reflected DOMString attribute test for button/@name
2 Initial value: 2 Initial value:
3 PASS element.name is "" 3 PASS element.name is ""
4 PASS element.getAttribute("name") is null 4 PASS element.getAttribute("name") is null
5 Setting a value via the IDL attribute: 5 Setting a value via the IDL attribute:
6 PASS element.name = "foo"; element.name is "foo" 6 PASS element.name = "foo"; element.name is "foo"
7 PASS element.getAttribute("name") is "foo" 7 PASS element.getAttribute("name") is "foo"
8 Setting a value via the content attribute: 8 Setting a value via the content attribute:
9 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" 9 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n"
10 PASS element.getAttribute("name") is " bar\n" 10 PASS element.getAttribute("name") is " bar\n"
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 Initial value: 212 Initial value:
213 PASS element.name is "" 213 PASS element.name is ""
214 PASS element.getAttribute("name") is null 214 PASS element.getAttribute("name") is null
215 Setting a value via the IDL attribute: 215 Setting a value via the IDL attribute:
216 PASS element.name = "foo"; element.name is "foo" 216 PASS element.name = "foo"; element.name is "foo"
217 PASS element.getAttribute("name") is "foo" 217 PASS element.getAttribute("name") is "foo"
218 Setting a value via the content attribute: 218 Setting a value via the content attribute:
219 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" 219 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n"
220 PASS element.getAttribute("name") is " bar\n" 220 PASS element.getAttribute("name") is " bar\n"
221 Setting null via the IDL attribute: 221 Setting null via the IDL attribute:
222 PASS element.name = null; element.name is "" 222 PASS element.name = null; element.name is "null"
223 PASS element.getAttribute("name") is null 223 PASS element.getAttribute("name") is "null"
224 Setting null via the content attribute: 224 Setting null via the content attribute:
225 PASS element.setAttribute("name", null); element.name is "null" 225 PASS element.setAttribute("name", null); element.name is "null"
226 PASS element.getAttribute("name") is "null" 226 PASS element.getAttribute("name") is "null"
227 Setting undefined via the IDL attribute: 227 Setting undefined via the IDL attribute:
228 PASS element.name = undefined; element.name is "undefined" 228 PASS element.name = undefined; element.name is "undefined"
229 PASS element.getAttribute("name") is "undefined" 229 PASS element.getAttribute("name") is "undefined"
230 Setting undefined via the content attribute: 230 Setting undefined via the content attribute:
231 PASS element.setAttribute("name", undefined); element.name is "undefined" 231 PASS element.setAttribute("name", undefined); element.name is "undefined"
232 PASS element.getAttribute("name") is "undefined" 232 PASS element.getAttribute("name") is "undefined"
233 Setting non-string via the IDL attribute: 233 Setting non-string via the IDL attribute:
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
295 PASS element.getAttribute("name") is "123" 295 PASS element.getAttribute("name") is "123"
296 Setting non-string via the content attribute: 296 Setting non-string via the content attribute:
297 PASS element.setAttribute("name", 456); element.name is "456" 297 PASS element.setAttribute("name", 456); element.name is "456"
298 PASS element.getAttribute("name") is "456" 298 PASS element.getAttribute("name") is "456"
299 299
300 300
301 PASS successfullyParsed is true 301 PASS successfullyParsed is true
302 302
303 TEST COMPLETE 303 TEST COMPLETE
304 304
OLDNEW
« no previous file with comments | « LayoutTests/fast/dom/domstring-attribute-reflection.html ('k') | LayoutTests/fast/dom/element-attribute-js-null.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698