You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a specific author use case for something with the shape of nestedStyleSheets? The reason I ask is that it's incongruous with how other at-rules are represented in the CSSOM. I would expect to see @sheet represented by an interface derived from either CSSRule or perhaps CSSGroupingRule, for example:
// Deriving inspiration from CSSImportRuleinterface CSSSheetRule : CSSRule{[SameObject]readonlyattributeCSSStyleSheet? styleSheet;readonlyattributeCSSOMStringname;}
Or:
// Deriving inspiration from CSSMediaRuleinterface CSSSheetRule : CSSGroupingRule{readonlyattributeCSSOMStringname;}
Then authors can reach the sheets/rules and manipulate them in the OM using existing methods on CSSStyleSheet.
The text was updated successfully, but these errors were encountered: