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

Unified Diff: LayoutTests/fast/html/eventhandler-attribute-non-callable-expected.txt

Issue 1076783002: Support non-function object values assigned to EventHandler attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: drop (now) pointless assert Created 5 years, 8 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/html/eventhandler-attribute-non-callable-expected.txt
diff --git a/LayoutTests/fast/html/eventhandler-attribute-non-callable-expected.txt b/LayoutTests/fast/html/eventhandler-attribute-non-callable-expected.txt
index 0c32176b905e13a8a6260aae38c5717456b91453..e53674cdc69fb3ffae182af3f28f9534ec1e0d43 100644
--- a/LayoutTests/fast/html/eventhandler-attribute-non-callable-expected.txt
+++ b/LayoutTests/fast/html/eventhandler-attribute-non-callable-expected.txt
@@ -10,10 +10,14 @@ PASS callbackCount is 0
PASS callbackCount is 1
PASS div.onkeydown is not null
PASS div.onkeydown = o did not throw exception.
-PASS div.onkeydown is null
+PASS div.onkeydown is o
PASS callbackCount is 1
PASS div.onkeydown = callback did not throw exception.
PASS div.onkeydown is callback
+PASS div.onkeydown = "non-object" did not throw exception.
+PASS div.onkeydown is null
+PASS div.onkeydown = callback did not throw exception.
+PASS div.onkeydown is callback
PASS div.onkeydown = null did not throw exception.
PASS div.onkeydown is null
PASS successfullyParsed is true

Powered by Google App Engine
This is Rietveld 408576698