Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions css-anchor-position-1/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -1253,6 +1253,48 @@ with no additional effects.)
</div>


<!--
Insert ASCII art here
-->

DOM Interfaces {#interfaces}
==========

The CSSPositionFallbackRule interface {#position-fallback-rule}
-------------------------------------

The {{CSSPositionFallbackRule}} interface represents
the ''@position-fallback'' rule:

<pre class='idl' export>
[Exposed=Window]
interface CSSPositionFallbackRule : CSSGroupingRule {
readonly attribute CSSOMString name;
};
</pre>

Its <dfn attribute for=CSSPositionFallbackRule>name</dfn> 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:

<pre class='idl' export>
[Exposed=Window]
interface CSSTryRule : CSSRule {
[SameObject, PutForwards=cssText] readonly attribute CSSStyleDeclaration style;
};
</pre>

Its <dfn attribute for=CSSTryRule>style</dfn> attribute
represents the declarations declared by the ''@try'' block itself in the specified order.


Security Considerations {#sec}
=======================

Expand Down