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

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/idl-union-type-unittest-expected.txt

Issue 2001493002: Update union conversion algorithm (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/idl-union-type-unittest-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/dom/idl-union-type-unittest-expected.txt b/third_party/WebKit/LayoutTests/fast/dom/idl-union-type-unittest-expected.txt
index fb9eb0a7016cabfd6f040cd2f187c04aaa2c1647..9f3da6b8a6f31b70429ea5c9654bc7c63938dec7 100644
--- a/third_party/WebKit/LayoutTests/fast/dom/idl-union-type-unittest-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/dom/idl-union-type-unittest-expected.txt
@@ -112,6 +112,12 @@ PASS unionTypesTest.doubleOrStringOrStringSequenceNullableArg(undefined) is "nul
PASS unionTypesTest.doubleOrStringOrStringSequenceNullableArg([]) is "sequence: []"
PASS unionTypesTest.doubleOrStringOrStringSequenceNullableArg(["a", 3.14]) is "sequence: [a, 3.14]"
PASS unionTypesTest.doubleOrStringOrStringSequenceNullableArg(new Array(3)) is "sequence: [undefined, undefined, undefined]"
+
+Tests for distingushing sequence and dictionary
+PASS unionTypesTest.internalDictionaryOrStringSequenceArg({}) is "InternalDictionary"
+PASS unionTypesTest.internalDictionaryOrStringSequenceArg(null) is "InternalDictionary"
+PASS unionTypesTest.internalDictionaryOrStringSequenceArg(undefined) is "InternalDictionary"
+PASS unionTypesTest.internalDictionaryOrStringSequenceArg(["a", "b", "c"]) is "sequence<DOMString>"
PASS successfullyParsed is true
TEST COMPLETE

Powered by Google App Engine
This is Rietveld 408576698