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

Unified Diff: LayoutTests/fast/js/custom-constructors-expected.txt

Issue 373043004: IDL: Treat undefined as missing for optional arguments with defaults (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebased Created 6 years, 5 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: LayoutTests/fast/js/custom-constructors-expected.txt
diff --git a/LayoutTests/fast/js/custom-constructors-expected.txt b/LayoutTests/fast/js/custom-constructors-expected.txt
index 281c09a7319b5a66207912f7073cbb1f52bfcb19..3526a750bca9390cada58459477c3450e17c67fb 100644
--- a/LayoutTests/fast/js/custom-constructors-expected.txt
+++ b/LayoutTests/fast/js/custom-constructors-expected.txt
@@ -17,11 +17,11 @@ PASS new Option() is non-null.
PASS new Option().tagName is "OPTION"
PASS new Option().innerText is ""
PASS new Option(null).innerText is "null"
-PASS new Option(undefined).innerText is "undefined"
+PASS new Option(undefined).innerText is ""
PASS new Option('somedata').innerText is "somedata"
PASS new Option().value is ""
PASS new Option('somedata', null).value is "null"
-PASS new Option('somedata', undefined).value is "undefined"
+PASS new Option('somedata', undefined).value is "somedata"
PASS new Option('somedata', 'somevalue').value is "somevalue"
PASS new Option().defaultSelected is false
PASS new Option('somedata', 'somevalue').defaultSelected is false

Powered by Google App Engine
This is Rietveld 408576698