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

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

Issue 101573002: Remove TreatNullAs=NullString for HTMLSelectElement (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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 Initial value: 242 Initial value:
243 PASS element.name is "" 243 PASS element.name is ""
244 PASS element.getAttribute("name") is null 244 PASS element.getAttribute("name") is null
245 Setting a value via the IDL attribute: 245 Setting a value via the IDL attribute:
246 PASS element.name = "foo"; element.name is "foo" 246 PASS element.name = "foo"; element.name is "foo"
247 PASS element.getAttribute("name") is "foo" 247 PASS element.getAttribute("name") is "foo"
248 Setting a value via the content attribute: 248 Setting a value via the content attribute:
249 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n" 249 PASS element.setAttribute("name", " bar\n"); element.name is " bar\n"
250 PASS element.getAttribute("name") is " bar\n" 250 PASS element.getAttribute("name") is " bar\n"
251 Setting null via the IDL attribute: 251 Setting null via the IDL attribute:
252 PASS element.name = null; element.name is "" 252 PASS element.name = null; element.name is "null"
253 PASS element.getAttribute("name") is null 253 PASS element.getAttribute("name") is "null"
254 Setting null via the content attribute: 254 Setting null via the content attribute:
255 PASS element.setAttribute("name", null); element.name is "null" 255 PASS element.setAttribute("name", null); element.name is "null"
256 PASS element.getAttribute("name") is "null" 256 PASS element.getAttribute("name") is "null"
257 Setting undefined via the IDL attribute: 257 Setting undefined via the IDL attribute:
258 PASS element.name = undefined; element.name is "undefined" 258 PASS element.name = undefined; element.name is "undefined"
259 PASS element.getAttribute("name") is "undefined" 259 PASS element.getAttribute("name") is "undefined"
260 Setting undefined via the content attribute: 260 Setting undefined via the content attribute:
261 PASS element.setAttribute("name", undefined); element.name is "undefined" 261 PASS element.setAttribute("name", undefined); element.name is "undefined"
262 PASS element.getAttribute("name") is "undefined" 262 PASS element.getAttribute("name") is "undefined"
263 Setting non-string via the IDL attribute: 263 Setting non-string via the IDL attribute:
(...skipping 31 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