Chromium Code Reviews| Index: third_party/WebKit/Source/core/html/HTMLElement.idl |
| diff --git a/third_party/WebKit/Source/core/html/HTMLElement.idl b/third_party/WebKit/Source/core/html/HTMLElement.idl |
| index d39a27a05e6a0f0dcf5b4336536e86351c8aa67c..36840379a215968f01ae2b0d9474cafec45a7624 100644 |
| --- a/third_party/WebKit/Source/core/html/HTMLElement.idl |
| +++ b/third_party/WebKit/Source/core/html/HTMLElement.idl |
| @@ -55,6 +55,9 @@ interface HTMLElement : Element { |
| // CSS Object Model (CSSOM) |
| // http://dev.w3.org/csswg/cssom/#the-elementcssinlinestyle-interface |
| [SameObject, PerWorldBindings, PutForwards=cssText] readonly attribute CSSStyleDeclaration style; |
| + // Typed OM |
| + // https://drafts.css-houdini.org/css-typed-om/#inline-stylepropertymap-objects |
| + [RuntimeEnabled=CSSTypedOM] readonly attribute StylePropertyMap styleMap; |
|
dstockwell
2016/02/25 02:55:07
This should be defined in a partial interface.
|
| // Non-standard APIs |
| [TreatNullAs=NullString, CustomElementCallbacks, RaisesException=Setter, MeasureAs=HTMLElementInnerText] attribute DOMString innerText; |