Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / dom / boolean-attribute-reflection-expected.txt
index c50eb6f..cd9c9e0 100644 (file)
@@ -27,6 +27,10 @@ PASS e = make('hr'); e.removeAttribute('noshade'); e.noShade is false
 PASS e = make('hr'); e.setAttribute('noshade', ''); e.noShade is true
 PASS e = make('hr'); e.setAttribute('noshade', 'x'); e.noShade = false; e.getAttribute('noshade') is null
 PASS e = make('hr'); e.setAttribute('noshade', 'x'); e.noShade = true; e.getAttribute('noshade') is ''
+PASS e = make('iframe'); e.removeAttribute('allowfullscreen'); e.allowFullscreen is false
+PASS e = make('iframe'); e.setAttribute('allowfullscreen', ''); e.allowFullscreen is true
+PASS e = make('iframe'); e.setAttribute('allowfullscreen', 'x'); e.allowFullscreen = false; e.getAttribute('allowfullscreen') is null
+PASS e = make('iframe'); e.setAttribute('allowfullscreen', 'x'); e.allowFullscreen = true; e.getAttribute('allowfullscreen') is ''
 PASS e = make('img'); e.removeAttribute('ismap'); e.isMap is false
 PASS e = make('img'); e.setAttribute('ismap', ''); e.isMap is true
 PASS e = make('img'); e.setAttribute('ismap', 'x'); e.isMap = false; e.getAttribute('ismap') is null
@@ -67,6 +71,18 @@ PASS e = make('menu'); e.removeAttribute('compact'); e.compact is false
 PASS e = make('menu'); e.setAttribute('compact', ''); e.compact is true
 PASS e = make('menu'); e.setAttribute('compact', 'x'); e.compact = false; e.getAttribute('compact') is null
 PASS e = make('menu'); e.setAttribute('compact', 'x'); e.compact = true; e.getAttribute('compact') is ''
+PASS e = make('menuitem'); e.removeAttribute('checked'); e.checked is false
+PASS e = make('menuitem'); e.setAttribute('checked', ''); e.checked is true
+PASS e = make('menuitem'); e.setAttribute('checked', 'x'); e.checked = false; e.getAttribute('checked') is null
+PASS e = make('menuitem'); e.setAttribute('checked', 'x'); e.checked = true; e.getAttribute('checked') is ''
+PASS e = make('menuitem'); e.removeAttribute('default'); e.default is false
+PASS e = make('menuitem'); e.setAttribute('default', ''); e.default is true
+PASS e = make('menuitem'); e.setAttribute('default', 'x'); e.default = false; e.getAttribute('default') is null
+PASS e = make('menuitem'); e.setAttribute('default', 'x'); e.default = true; e.getAttribute('default') is ''
+PASS e = make('menuitem'); e.removeAttribute('disabled'); e.disabled is false
+PASS e = make('menuitem'); e.setAttribute('disabled', ''); e.disabled is true
+PASS e = make('menuitem'); e.setAttribute('disabled', 'x'); e.disabled = false; e.getAttribute('disabled') is null
+PASS e = make('menuitem'); e.setAttribute('disabled', 'x'); e.disabled = true; e.getAttribute('disabled') is ''
 PASS e = make('object'); e.removeAttribute('declare'); e.declare is false
 PASS e = make('object'); e.setAttribute('declare', ''); e.declare is true
 PASS e = make('object'); e.setAttribute('declare', 'x'); e.declare = false; e.getAttribute('declare') is null
@@ -79,10 +95,6 @@ PASS e = make('option'); e.removeAttribute('selected'); e.defaultSelected is fal
 PASS e = make('option'); e.setAttribute('selected', ''); e.defaultSelected is true
 PASS e = make('option'); e.setAttribute('selected', 'x'); e.defaultSelected = false; e.getAttribute('selected') is null
 PASS e = make('option'); e.setAttribute('selected', 'x'); e.defaultSelected = true; e.getAttribute('selected') is ''
-PASS e = make('pre'); e.removeAttribute('wrap'); e.wrap is false
-PASS e = make('pre'); e.setAttribute('wrap', ''); e.wrap is true
-PASS e = make('pre'); e.setAttribute('wrap', 'x'); e.wrap = false; e.getAttribute('wrap') is null
-PASS e = make('pre'); e.setAttribute('wrap', 'x'); e.wrap = true; e.getAttribute('wrap') is ''
 PASS e = make('script'); e.removeAttribute('defer'); e.defer is false
 PASS e = make('script'); e.setAttribute('defer', ''); e.defer is true
 PASS e = make('script'); e.setAttribute('defer', 'x'); e.defer = false; e.getAttribute('defer') is null