tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

css-properties-values-api.idl (726B)


      1 // GENERATED CONTENT - DO NOT EDIT
      2 // Content was automatically extracted by Reffy into webref
      3 // (https://github.com/w3c/webref)
      4 // Source: CSS Properties and Values API Level 1 (https://drafts.css-houdini.org/css-properties-values-api-1/)
      5 
      6 dictionary PropertyDefinition {
      7  required DOMString name;
      8           DOMString syntax       = "*";
      9  required boolean   inherits;
     10           DOMString initialValue;
     11 };
     12 
     13 partial namespace CSS {
     14  undefined registerProperty(PropertyDefinition definition);
     15 };
     16 
     17 [Exposed=Window]
     18 interface CSSPropertyRule : CSSRule {
     19  readonly attribute CSSOMString name;
     20  readonly attribute CSSOMString syntax;
     21  readonly attribute boolean inherits;
     22  readonly attribute CSSOMString? initialValue;
     23 };