From 6404dc1fa33bbb1653900cb8e875749912af40cb Mon Sep 17 00:00:00 2001 From: Koji Ishii Date: Wed, 13 May 2026 15:02:16 +0900 Subject: [PATCH] Add `` This adds `` as an immutable standardized name. This is used by the CSS [responsive embedded sizing flag]. [responsive embedded sizing flag]: https://drafts.csswg.org/css-sizing-4/#document-responsive-embedded-sizing-flag --- source | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/source b/source index 278b5617197..7efb88cbbb8 100644 --- a/source +++ b/source @@ -3979,6 +3979,7 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute
  • fit-content inline size
  • 'aspect-ratio' property
  • intrinsic size
  • +
  • responsively-sized iframes
  • The following features are defined in CSS Lists and Counters. @@ -11504,6 +11505,15 @@ partial interface Document { the ongoing navigation. This eventually gets set back to null, after WebDriver BiDi considers the loading process to be finished. BIDI

    +

    Each Document has a boolean + responsive embedded + sizing, initially false.

    + +

    This is set by meta elements whose + name attribute is + responsive-embedded-sizing, + and used by responsively-sized iframes.

    +

    Each Document has an about base URL, which is a URL or null, initially null.

    @@ -17901,6 +17911,36 @@ interface HTMLMetaElement : HTMLElement { +
    responsive-embedded-sizing
    + +
    +
    +

    If any meta element element is inserted into the document, or has its name or content + attributes changed, user agents must run the following algorithm:

    + +
      +
    1. If element is not in a document tree, then return.

    2. + +
    3. If element does not have a name + attribute whose value is an ASCII case-insensitive match for "responsive-embedded-sizing", + then return.

    4. + +
    5. If element has a content + attribute and that attribute's value is not the empty string, then return.

    6. + +
    7. If the body element of the Document is not null, + then return.

    8. + +
    9. Set the Document's + responsive embedded sizing + to true.

    10. +
    +
    +
    +
    theme-color