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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/cachestorage/window/sandboxed-iframes.html

Issue 1463763002: Add event name to bare removeEventListener(listener) calls (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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/http/tests/cachestorage/window/sandboxed-iframes.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/cachestorage/window/sandboxed-iframes.html b/third_party/WebKit/LayoutTests/http/tests/cachestorage/window/sandboxed-iframes.html
index 8ffac7c891bb5f0215a03968538548b4f39794d5..e5f3a0fe84998151139bf224e6411c4fd6919b8a 100644
--- a/third_party/WebKit/LayoutTests/http/tests/cachestorage/window/sandboxed-iframes.html
+++ b/third_party/WebKit/LayoutTests/http/tests/cachestorage/window/sandboxed-iframes.html
@@ -23,7 +23,7 @@ function wait_for_message(id) {
self.addEventListener('message', function listener(e) {
if (e.data.id === id) {
resolve(e.data);
- self.removeEventListener(listener);
+ self.removeEventListener('message', listener);
}
});
});

Powered by Google App Engine
This is Rietveld 408576698