From ddb768ed3454405a9a976f214e2503bd25e5abc4 Mon Sep 17 00:00:00 2001 From: Wes <5124946+wesinator@users.noreply.github.com> Date: Fri, 12 Mar 2021 21:25:01 -0500 Subject: [PATCH] Link types: noopener - add note about new default noopener is now implicitly set on `_blank` by default --- files/en-us/web/html/link_types/noopener/index.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/files/en-us/web/html/link_types/noopener/index.html b/files/en-us/web/html/link_types/noopener/index.html index ba6ec84110c542b..dc051c038451f13 100644 --- a/files/en-us/web/html/link_types/noopener/index.html +++ b/files/en-us/web/html/link_types/noopener/index.html @@ -13,6 +13,11 @@

Note that when noopener is used, nonempty target names other than _top, _self, and _parent are all treated like _blank in terms of deciding whether to open a new window/tab.

+
+

Note

+

Setting target="_blank" on <a> elements now implicitly provides the same rel behavior as setting rel="noopener" which does not set window.opener. See browser compatibility for support status.

+
+

Specifications