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

Unified Diff: LayoutTests/fast/dom/MutationObserver/mutation-observer-constructor-expected.txt

Issue 105693002: Generate a bit less code to handle failed arity checks. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 years 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
« no previous file with comments | « no previous file | Source/bindings/scripts/code_generator_v8.pm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/dom/MutationObserver/mutation-observer-constructor-expected.txt
diff --git a/LayoutTests/fast/dom/MutationObserver/mutation-observer-constructor-expected.txt b/LayoutTests/fast/dom/MutationObserver/mutation-observer-constructor-expected.txt
index f13ef82e7ed770797a1e377ad02b280443b0c8e9..a444a97918c767b0a1719236722e2ed09bd4f670 100644
--- a/LayoutTests/fast/dom/MutationObserver/mutation-observer-constructor-expected.txt
+++ b/LayoutTests/fast/dom/MutationObserver/mutation-observer-constructor-expected.txt
@@ -8,10 +8,10 @@ PASS typeof WebKitMutationObserver.prototype.observe is "function"
PASS typeof WebKitMutationObserver.prototype.disconnect is "function"
PASS typeof observer.observe is "function"
PASS typeof observer.disconnect is "function"
-PASS new MutationObserver({ handleEvent: function() {} }) threw exception TypeError: Callback argument must be a function.
-PASS new MutationObserver({}) threw exception TypeError: Callback argument must be a function.
-PASS new MutationObserver(42) threw exception TypeError: Callback argument must be a function.
-PASS new MutationObserver("foo") threw exception TypeError: Callback argument must be a function.
+PASS new MutationObserver({ handleEvent: function() {} }) threw exception TypeError: Failed to construct 'MutationObserver': Callback argument must be a function.
+PASS new MutationObserver({}) threw exception TypeError: Failed to construct 'MutationObserver': Callback argument must be a function.
+PASS new MutationObserver(42) threw exception TypeError: Failed to construct 'MutationObserver': Callback argument must be a function.
+PASS new MutationObserver("foo") threw exception TypeError: Failed to construct 'MutationObserver': Callback argument must be a function.
PASS successfullyParsed is true
TEST COMPLETE
« no previous file with comments | « no previous file | Source/bindings/scripts/code_generator_v8.pm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698