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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/domstring-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/domstring-attribute-reflection-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/dom/domstring-attribute-reflection-expected.txt b/third_party/WebKit/LayoutTests/fast/dom/domstring-attribute-reflection-expected.txt
index 96c2f77798fe45aeb858d6b260c7133caa04d083..cf14816a3c365b8b93071351750fd3160a239b80 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/domstring-attribute-reflection-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/dom/domstring-attribute-reflection-expected.txt
@@ -148,66 +148,6 @@ PASS element.setAttribute("step", 456); element.step is "456"
PASS element.getAttribute("step") is "456"
-Reflected DOMString attribute test for menu/@label
-Initial value:
-PASS element.label is ""
-PASS element.getAttribute("label") is null
-Setting a value via the IDL attribute:
-PASS element.label = "foo"; element.label is "foo"
-PASS element.getAttribute("label") is "foo"
-Setting a value via the content attribute:
-PASS element.setAttribute("label", " bar\n"); element.label is " bar\n"
-PASS element.getAttribute("label") is " bar\n"
-Setting null via the IDL attribute:
-PASS element.label = null; element.label is "null"
-PASS element.getAttribute("label") is "null"
-Setting null via the content attribute:
-PASS element.setAttribute("label", null); element.label is "null"
-PASS element.getAttribute("label") is "null"
-Setting undefined via the IDL attribute:
-PASS element.label = undefined; element.label is "undefined"
-PASS element.getAttribute("label") is "undefined"
-Setting undefined via the content attribute:
-PASS element.setAttribute("label", undefined); element.label is "undefined"
-PASS element.getAttribute("label") is "undefined"
-Setting non-string via the IDL attribute:
-PASS element.label = 123; element.label is "123"
-PASS element.getAttribute("label") is "123"
-Setting non-string via the content attribute:
-PASS element.setAttribute("label", 456); element.label is "456"
-PASS element.getAttribute("label") is "456"
-
-
-Reflected DOMString attribute test for menuitem/@label
-Initial value:
-PASS element.label is ""
-PASS element.getAttribute("label") is null
-Setting a value via the IDL attribute:
-PASS element.label = "foo"; element.label is "foo"
-PASS element.getAttribute("label") is "foo"
-Setting a value via the content attribute:
-PASS element.setAttribute("label", " bar\n"); element.label is " bar\n"
-PASS element.getAttribute("label") is " bar\n"
-Setting null via the IDL attribute:
-PASS element.label = null; element.label is "null"
-PASS element.getAttribute("label") is "null"
-Setting null via the content attribute:
-PASS element.setAttribute("label", null); element.label is "null"
-PASS element.getAttribute("label") is "null"
-Setting undefined via the IDL attribute:
-PASS element.label = undefined; element.label is "undefined"
-PASS element.getAttribute("label") is "undefined"
-Setting undefined via the content attribute:
-PASS element.setAttribute("label", undefined); element.label is "undefined"
-PASS element.getAttribute("label") is "undefined"
-Setting non-string via the IDL attribute:
-PASS element.label = 123; element.label is "123"
-PASS element.getAttribute("label") is "123"
-Setting non-string via the content attribute:
-PASS element.setAttribute("label", 456); element.label is "456"
-PASS element.getAttribute("label") is "456"
-
-
Reflected DOMString attribute test for object/@name
Initial value:
PASS element.name is ""

Powered by Google App Engine
This is Rietveld 408576698