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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/boolean-attribute-reflection-expected.txt

Issue 2905763003: Rollback ContextMenu (Closed)
Patch Set: Rebase Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/dom/boolean-attribute-reflection-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/dom/boolean-attribute-reflection-expected.txt b/third_party/WebKit/LayoutTests/fast/dom/boolean-attribute-reflection-expected.txt
index cd9c9e09dad840e4d92b548e66741d56a7bef5e5..f74d535f419d1ff0b24bf8fa688cf7340e0b348b 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/boolean-attribute-reflection-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/dom/boolean-attribute-reflection-expected.txt
@@ -71,18 +71,6 @@ 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

Powered by Google App Engine
This is Rietveld 408576698