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