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

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

Issue 7046023: Revert 84329 - 2011-04-19 Julien Chaffraix <jchaffraix@codeaurora.org> (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/782/
Patch Set: Created 9 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
1 Test reflecting boolean attributes. 1 Test reflecting boolean attributes.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS e = make('area'); e.removeAttribute('nohref'); e.noHref is false 6 PASS e = make('area'); e.removeAttribute('nohref'); e.noHref is false
7 PASS e = make('area'); e.setAttribute('nohref', ''); e.noHref is true 7 PASS e = make('area'); e.setAttribute('nohref', ''); e.noHref is true
8 PASS e = make('area'); e.setAttribute('nohref', 'x'); e.noHref = false; e.getAtt ribute('nohref') is null 8 PASS e = make('area'); e.setAttribute('nohref', 'x'); e.noHref = false; e.getAtt ribute('nohref') is null
9 PASS e = make('area'); e.setAttribute('nohref', 'x'); e.noHref = true; e.getAttr ibute('nohref') is '' 9 PASS e = make('area'); e.setAttribute('nohref', 'x'); e.noHref = true; e.getAttr ibute('nohref') is ''
10 PASS e = make('dir'); e.removeAttribute('compact'); e.compact is false 10 PASS e = make('dir'); e.removeAttribute('compact'); e.compact is false
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 PASS e = make('input'); e.setAttribute('multiple', 'x'); e.multiple = false; e.g etAttribute('multiple') is null 52 PASS e = make('input'); e.setAttribute('multiple', 'x'); e.multiple = false; e.g etAttribute('multiple') is null
53 PASS e = make('input'); e.setAttribute('multiple', 'x'); e.multiple = true; e.ge tAttribute('multiple') is '' 53 PASS e = make('input'); e.setAttribute('multiple', 'x'); e.multiple = true; e.ge tAttribute('multiple') is ''
54 PASS e = make('input'); e.removeAttribute('readonly'); e.readOnly is false 54 PASS e = make('input'); e.removeAttribute('readonly'); e.readOnly is false
55 PASS e = make('input'); e.setAttribute('readonly', ''); e.readOnly is true 55 PASS e = make('input'); e.setAttribute('readonly', ''); e.readOnly is true
56 PASS e = make('input'); e.setAttribute('readonly', 'x'); e.readOnly = false; e.g etAttribute('readonly') is null 56 PASS e = make('input'); e.setAttribute('readonly', 'x'); e.readOnly = false; e.g etAttribute('readonly') is null
57 PASS e = make('input'); e.setAttribute('readonly', 'x'); e.readOnly = true; e.ge tAttribute('readonly') is '' 57 PASS e = make('input'); e.setAttribute('readonly', 'x'); e.readOnly = true; e.ge tAttribute('readonly') is ''
58 PASS e = make('input'); e.removeAttribute('required'); e.required is false 58 PASS e = make('input'); e.removeAttribute('required'); e.required is false
59 PASS e = make('input'); e.setAttribute('required', ''); e.required is true 59 PASS e = make('input'); e.setAttribute('required', ''); e.required is true
60 PASS e = make('input'); e.setAttribute('required', 'x'); e.required = false; e.g etAttribute('required') is null 60 PASS e = make('input'); e.setAttribute('required', 'x'); e.required = false; e.g etAttribute('required') is null
61 PASS e = make('input'); e.setAttribute('required', 'x'); e.required = true; e.ge tAttribute('required') is '' 61 PASS e = make('input'); e.setAttribute('required', 'x'); e.required = true; e.ge tAttribute('required') is ''
62 PASS e = make('link'); e.removeAttribute('disabled'); e.disabled is false
63 PASS e = make('link'); e.setAttribute('disabled', ''); e.disabled is true
64 PASS e = make('link'); e.setAttribute('disabled', 'x'); e.disabled = false; e.ge tAttribute('disabled') is null
65 PASS e = make('link'); e.setAttribute('disabled', 'x'); e.disabled = true; e.get Attribute('disabled') is ''
62 PASS e = make('menu'); e.removeAttribute('compact'); e.compact is false 66 PASS e = make('menu'); e.removeAttribute('compact'); e.compact is false
63 PASS e = make('menu'); e.setAttribute('compact', ''); e.compact is true 67 PASS e = make('menu'); e.setAttribute('compact', ''); e.compact is true
64 PASS e = make('menu'); e.setAttribute('compact', 'x'); e.compact = false; e.getA ttribute('compact') is null 68 PASS e = make('menu'); e.setAttribute('compact', 'x'); e.compact = false; e.getA ttribute('compact') is null
65 PASS e = make('menu'); e.setAttribute('compact', 'x'); e.compact = true; e.getAt tribute('compact') is '' 69 PASS e = make('menu'); e.setAttribute('compact', 'x'); e.compact = true; e.getAt tribute('compact') is ''
66 PASS e = make('object'); e.removeAttribute('declare'); e.declare is false 70 PASS e = make('object'); e.removeAttribute('declare'); e.declare is false
67 PASS e = make('object'); e.setAttribute('declare', ''); e.declare is true 71 PASS e = make('object'); e.setAttribute('declare', ''); e.declare is true
68 PASS e = make('object'); e.setAttribute('declare', 'x'); e.declare = false; e.ge tAttribute('declare') is null 72 PASS e = make('object'); e.setAttribute('declare', 'x'); e.declare = false; e.ge tAttribute('declare') is null
69 PASS e = make('object'); e.setAttribute('declare', 'x'); e.declare = true; e.get Attribute('declare') is '' 73 PASS e = make('object'); e.setAttribute('declare', 'x'); e.declare = true; e.get Attribute('declare') is ''
70 PASS e = make('ol'); e.removeAttribute('compact'); e.compact is false 74 PASS e = make('ol'); e.removeAttribute('compact'); e.compact is false
71 PASS e = make('ol'); e.setAttribute('compact', ''); e.compact is true 75 PASS e = make('ol'); e.setAttribute('compact', ''); e.compact is true
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 PASS e = make('video'); e.setAttribute('controls', 'x'); e.controls = false; e.g etAttribute('controls') is null 108 PASS e = make('video'); e.setAttribute('controls', 'x'); e.controls = false; e.g etAttribute('controls') is null
105 PASS e = make('video'); e.setAttribute('controls', 'x'); e.controls = true; e.ge tAttribute('controls') is '' 109 PASS e = make('video'); e.setAttribute('controls', 'x'); e.controls = true; e.ge tAttribute('controls') is ''
106 PASS e = make('video'); e.removeAttribute('loop'); e.loop is false 110 PASS e = make('video'); e.removeAttribute('loop'); e.loop is false
107 PASS e = make('video'); e.setAttribute('loop', ''); e.loop is true 111 PASS e = make('video'); e.setAttribute('loop', ''); e.loop is true
108 PASS e = make('video'); e.setAttribute('loop', 'x'); e.loop = false; e.getAttrib ute('loop') is null 112 PASS e = make('video'); e.setAttribute('loop', 'x'); e.loop = false; e.getAttrib ute('loop') is null
109 PASS e = make('video'); e.setAttribute('loop', 'x'); e.loop = true; e.getAttribu te('loop') is '' 113 PASS e = make('video'); e.setAttribute('loop', 'x'); e.loop = true; e.getAttribu te('loop') is ''
110 PASS successfullyParsed is true 114 PASS successfullyParsed is true
111 115
112 TEST COMPLETE 116 TEST COMPLETE
113 117
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698