gecko-dev/testing/web-platform/tests/interfaces/css-regions.idl
autofoolip 69c2c86181 Bug 1536335 [wpt PR 15898] - Update interfaces/css-regions.idl, a=testonly
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
2019-04-24 11:18:05 +01:00

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;