forked from mirrors/gecko-dev
This does not implement any notion of CSSStyleDeclaration objects that do not have an owning element; there's no actual CSS object model in play here. This does support setting and getting properties of the style attribute for HTMLElement, and tries to implement the ambiguous CSS value serialization spec. Source-Repo: https://github.com/servo/servo Source-Revision: 824788649cd338c044d9396166af5b0f378d6685
11 lines
485 B
Text
11 lines
485 B
Text
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
//http://dev.w3.org/csswg/cssom/#elementcssinlinestyle
|
|
|
|
[NoInterfaceObject]
|
|
interface ElementCSSInlineStyle {
|
|
[SameObject/*, PutForwards=cssText*/] readonly attribute CSSStyleDeclaration style;
|
|
};
|