Skip to content

[css-typed-om] Use partial interface mixin ElementCSSInlineStyle #853

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 17, 2019
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
6 changes: 3 additions & 3 deletions css-typed-om/Overview.bs
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ partial interface CSSStyleRule {
[SameObject] readonly attribute StylePropertyMap styleMap;
};

partial interface ElementCSSInlineStyle {
partial interface mixin ElementCSSInlineStyle {
[SameObject] readonly attribute StylePropertyMap attributeStyleMap;
};
</pre>
Expand All @@ -738,8 +738,8 @@ partial interface ElementCSSInlineStyle {
represent style property-value pairs embedded in a style rule or inline style,
and are accessed via the <dfn attribute for=CSSStyleRule>styleMap</dfn> attribute of {{CSSStyleRule}} objects,
or the <dfn attribute for="ElementCSSInlineStyle">attributeStyleMap</dfn> attribute
of objects implementing the {{ElementCSSInlineStyle}} interface
(such as {{Element}}s).
of objects implementing the {{ElementCSSInlineStyle}} interface mixin
(such as {{HTMLElement}}s).

When constructed, the {{[[declarations]]}} internal slot for [=declared StylePropertyMap=] objects
is initialized to contain an entry
Expand Down