Definition
CSS Object Model (CSSOM) Module Level 1 defines ElementCSSInlineStyle
interface mixin ElementCSSInlineStyle {
  [SameObject, PutForwards=cssText] readonly attribute CSSStyleProperties style;
};This interface mixin is extended in the following specifications:
- CSS Typed OM Level 1partial interface mixin ElementCSSInlineStyle { [SameObject] readonly attribute StylePropertyMap attributeStyleMap; };
Consolidated IDL (across partials)
interface mixin ElementCSSInlineStyle {
  [SameObject, PutForwards=cssText] readonly attribute CSSStyleProperties style;
    [SameObject] readonly attribute StylePropertyMap attributeStyleMap;
};Referring IDL interfaces/dictionaries
Referring specifications
- CSS Typed OM Level 1 refers to ElementCSSInlineStyle