Victor Porof | 6e09692 | 2022-06-10 13:01:05 +0000 | [diff] [blame^] | 1 | // GENERATED CONTENT - DO NOT EDIT |
| 2 | // Content was automatically extracted by Reffy into webref |
| 3 | // (https://github.com/w3c/webref) |
| 4 | // Source: CSS Regions Module Level 1 (https://drafts.csswg.org/css-regions/) |
| 5 | |
| 6 | partial interface Document { |
| 7 | readonly attribute NamedFlowMap namedFlows; |
| 8 | }; |
| 9 | |
| 10 | [Exposed=Window] interface NamedFlowMap { |
| 11 | maplike<CSSOMString, NamedFlow>; |
| 12 | }; |
| 13 | |
| 14 | [Exposed=Window] |
| 15 | interface NamedFlow : EventTarget { |
| 16 | readonly attribute CSSOMString name; |
| 17 | readonly attribute boolean overset; |
| 18 | sequence<Element> getRegions(); |
| 19 | readonly attribute short firstEmptyRegionIndex; |
| 20 | sequence<Node> getContent(); |
| 21 | sequence<Element> getRegionsByContent(Node node); |
| 22 | }; |
| 23 | |
| 24 | interface mixin Region { |
| 25 | readonly attribute CSSOMString regionOverset; |
| 26 | sequence<Range>? getRegionFlowRanges(); |
| 27 | }; |
| 28 | |
| 29 | Element includes Region; |