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

Unified Diff: third_party/WebKit/LayoutTests/fast/events/popup-blocked-from-wrong-event.html

Issue 2379313002: Fix 'noopener' targeting and return value. (Closed)
Patch Set: Rebase Created 4 years, 2 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: third_party/WebKit/LayoutTests/fast/events/popup-blocked-from-wrong-event.html
diff --git a/third_party/WebKit/LayoutTests/fast/events/popup-blocked-from-wrong-event.html b/third_party/WebKit/LayoutTests/fast/events/popup-blocked-from-wrong-event.html
index d4210d411634878a971655f41597c9e4f1a461b9..4218ec7d5bc4ced3bee80c720b86d44fe3393f45 100644
--- a/third_party/WebKit/LayoutTests/fast/events/popup-blocked-from-wrong-event.html
+++ b/third_party/WebKit/LayoutTests/fast/events/popup-blocked-from-wrong-event.html
@@ -38,7 +38,7 @@
mouseup.initMouseEvent("mouseup", true, true, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null);
obj.dispatchEvent(mouseup);
// ... and we should not be able to open a new popup.
- shouldBeUndefined("window.open('about:blank')");
+ shouldBeNull("window.open('about:blank')");
finishJSTest();
}
</script>

Powered by Google App Engine
This is Rietveld 408576698