mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 21:28:04 +02:00
Automatic update from web-platform-tests Update interfaces/css-regions.idl (#15898) Source: https://github.com/tidoust/reffy-reports/blob/71eee25/whatwg/idl/css-regions.idl Build: https://travis-ci.org/tidoust/reffy-reports/builds/507703979 -- wpt-commits: c8b79a092345e78173ed744973210ec87ace4741 wpt-pr: 15898
33 lines
1,011 B
Text
33 lines
1,011 B
Text
// GENERATED CONTENT - DO NOT EDIT
|
|
// Content was automatically extracted by Reffy into reffy-reports
|
|
// (https://github.com/tidoust/reffy-reports)
|
|
// Source: CSS Regions Module Level 1 (https://drafts.csswg.org/css-regions/)
|
|
|
|
partial interface Document {
|
|
readonly attribute NamedFlowMap namedFlows;
|
|
};
|
|
|
|
[Exposed=Window,
|
|
MapClass=(CSSOMString, NamedFlow)] interface NamedFlowMap {
|
|
NamedFlow? get(CSSOMString flowName);
|
|
boolean has(CSSOMString flowName);
|
|
NamedFlowMap set(CSSOMString flowName, NamedFlow flowValue);
|
|
boolean delete(CSSOMString flowName);
|
|
};
|
|
|
|
[Exposed=Window]
|
|
interface NamedFlow : EventTarget {
|
|
readonly attribute CSSOMString name;
|
|
readonly attribute boolean overset;
|
|
sequence<Region> getRegions();
|
|
readonly attribute short firstEmptyRegionIndex;
|
|
sequence<Node> getContent();
|
|
sequence<Region> getRegionsByContent(Node node);
|
|
};
|
|
|
|
interface mixin Region {
|
|
readonly attribute CSSOMString regionOverset;
|
|
sequence<Range>? getRegionFlowRanges();
|
|
};
|
|
|
|
Element includes Region;
|