2000-04-20 13:50:56 +00:00
|
|
|
interface CSSStyleDeclaration {
|
1998-10-20 17:07:23 +00:00
|
|
|
/* IID: { 0xa6cf90be, 0x15b3, 0x11d2, \
|
|
|
|
{ 0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32 } } */
|
|
|
|
|
2000-04-26 13:58:56 +00:00
|
|
|
attribute DOMString cssText;
|
2000-04-20 13:50:56 +00:00
|
|
|
// raises(DOMException) on setting
|
1998-09-22 21:19:11 +00:00
|
|
|
|
2000-04-20 13:50:56 +00:00
|
|
|
DOMString getPropertyValue(in DOMString propertyName);
|
|
|
|
CSSValue getPropertyCSSValue(in DOMString propertyName);
|
|
|
|
DOMString removeProperty(in DOMString propertyName)
|
|
|
|
raises(DOMException);
|
|
|
|
DOMString getPropertyPriority(in DOMString propertyName);
|
|
|
|
void setProperty(in DOMString propertyName,
|
|
|
|
in DOMString value,
|
|
|
|
in DOMString priority)
|
|
|
|
raises(DOMException);
|
|
|
|
readonly attribute unsigned long length;
|
|
|
|
DOMString item(in unsigned long index);
|
|
|
|
readonly attribute CSSRule parentRule;
|
1998-09-22 21:19:11 +00:00
|
|
|
|
2000-04-20 13:50:56 +00:00
|
|
|
};
|
1998-09-22 21:19:11 +00:00
|
|
|
|