diff --git a/files/en-us/web/api/window/opener/index.html b/files/en-us/web/api/window/opener/index.html index f15ebfff2a1ecb5..9b2388af0461209 100644 --- a/files/en-us/web/api/window/opener/index.html +++ b/files/en-us/web/api/window/opener/index.html @@ -47,7 +47,7 @@

Value

{{htmlattrxref("rel", "a")}}=noopener on a link, or passing noopener in the {{domxref("Window.open", "windowFeatures")}} parameter. -
  • From Firefox 79, windows opened because of links with a {{htmlattrxref("target", +
  • Windows opened because of links with a {{htmlattrxref("target", "a")}} of _blank don't get an opener, unless explicitly requested with {{htmlattrxref("rel", "a")}}=opener.
  • Having a {{HTTPHeader("Cross-Origin-Opener-Policy")}} header with a value of diff --git a/files/en-us/web/html/element/a/index.html b/files/en-us/web/html/element/a/index.html index 6b297a62fb1616c..465a3be8dc76b9b 100644 --- a/files/en-us/web/html/element/a/index.html +++ b/files/en-us/web/html/element/a/index.html @@ -41,12 +41,13 @@

    Attributes

  • Defining a value suggests it as the filename. / and \ characters are converted to underscores (_). Filesystems may forbid other characters in filenames, so browsers will adjust the suggested name if necessary.
  • -
    Notes: +
    +

    Notes

    Use this attribute only if the {{htmlattrxref("href", "area")}} attribute is present. -
    -

    Note: In newer browser versions (e.g. Firefox 79+) setting target="_blank" on <area> elements implicitly provides the same rel behavior as setting rel="noopener".

    +
    +

    Note

    +

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

    @@ -120,8 +121,9 @@

    Deprecated attributes

    Define a names for the clickable area so that it can be scripted by older browsers.
    {{htmlattrdef("nohref")}} {{deprecated_inline}}
    Indicates that no hyperlink exists for the associated area. -
    -

    Note: Since HTML5, omitting the href attribute is sufficient.

    +
    +

    Note

    +

    Since HTML5, omitting the href attribute is sufficient.

    {{htmlattrdef("tabindex")}} {{deprecated_inline}}
    diff --git a/files/en-us/web/html/element/form/index.html b/files/en-us/web/html/element/form/index.html index 71d26c95d94522d..f1637f77c13edea 100644 --- a/files/en-us/web/html/element/form/index.html +++ b/files/en-us/web/html/element/form/index.html @@ -59,9 +59,12 @@

    Attributes

    This element includes the global attributes.

    -
    {{htmlattrdef("accept")}} {{obsolete_inline}}
    +
    {{htmlattrdef("accept")}} {{obsolete_inline("html5")}}
    Comma-separated content types the server accepts. -
    This attribute was removed in HTML5 and should not be used. Instead, use the {{htmlattrxref("accept", "input")}} attribute on <input type=file> elements.
    +
    +

    Note

    +

    This attribute was removed in HTML5 and should not be used. Instead, use the {{htmlattrxref("accept", "input")}} attribute on <input type=file> elements.

    +
    {{htmlattrdef("accept-charset")}}
    Space-separated character encodings the server accepts. The browser uses them in the order in which they are listed. The default value means the same encoding as the page.
    @@ -127,6 +130,10 @@

    Attributes for form submission

    This value can be overridden by a {{htmlattrxref("formtarget", "button")}} attribute on a {{HTMLElement("button")}}, <input type="submit">, or <input type="image"> element.

    +
    +

    Note

    +

    Setting target="_blank" on <form> elements implicitly provides the same rel behavior as setting rel="noopener" which does not set window.opener.

    +