diff --git a/css-anchor-position-1/Overview.bs b/css-anchor-position-1/Overview.bs index 33253152cde..71cc66f0f98 100644 --- a/css-anchor-position-1/Overview.bs +++ b/css-anchor-position-1/Overview.bs @@ -1253,6 +1253,48 @@ with no additional effects.) + + +DOM Interfaces {#interfaces} +========== + +The CSSPositionFallbackRule interface {#position-fallback-rule} +------------------------------------- + +The {{CSSPositionFallbackRule}} interface represents +the ''@position-fallback'' rule: + +
+[Exposed=Window]
+interface CSSPositionFallbackRule : CSSGroupingRule {
+ readonly attribute CSSOMString name;
+};
+
+
+Its name attribute
+represents the name declared by the at-rule itself.
+
+
+
+The CSSTryRule interface {#position-fallback-rule}
+-------------------------------------
+
+The {{CSSTryRule}} interface represents a ''@try'' block
+declared in a ''@position-fallback'' rule:
+
+
+[Exposed=Window]
+interface CSSTryRule : CSSRule {
+ [SameObject, PutForwards=cssText] readonly attribute CSSStyleDeclaration style;
+};
+
+
+Its style attribute
+represents the declarations declared by the ''@try'' block itself in the specified order.
+
+
Security Considerations {#sec}
=======================