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

Unified Diff: LayoutTests/fast/events/constructors/webgl-context-event-constructor.html

Issue 799733002: Use event init dictionaries in core/{css,html} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
Index: LayoutTests/fast/events/constructors/webgl-context-event-constructor.html
diff --git a/LayoutTests/fast/events/constructors/webgl-context-event-constructor.html b/LayoutTests/fast/events/constructors/webgl-context-event-constructor.html
index ee550dcce60ad1e5261d429e656877171eb69539..71e2be5e0d1b771801a56f9f71d9c461dd60b186 100644
--- a/LayoutTests/fast/events/constructors/webgl-context-event-constructor.html
+++ b/LayoutTests/fast/events/constructors/webgl-context-event-constructor.html
@@ -29,7 +29,7 @@ shouldBeEqualToString("new WebGLContextEvent('eventType', { statusMessage: 'abcd
shouldBeEqualToString("new WebGLContextEvent('eventType', { statusMessage: '' }).statusMessage", "");
// Non-strings.
-shouldBeEqualToString("new WebGLContextEvent('eventType', { statusMessage: undefined }).statusMessage", "undefined");
+shouldBeEqualToString("new WebGLContextEvent('eventType', { statusMessage: undefined }).statusMessage", "");
shouldBeEqualToString("new WebGLContextEvent('eventType', { statusMessage: null }).statusMessage", "null");
shouldBeEqualToString("new WebGLContextEvent('eventType', { statusMessage: false }).statusMessage", "false");
shouldBeEqualToString("new WebGLContextEvent('eventType', { statusMessage: true }).statusMessage", "true");

Powered by Google App Engine
This is Rietveld 408576698