Implemented CSSStyleDeclaration.setPropertyPriority

Implemented CSSStyleDeclaration.setPropertyPriority, resolves #4433
This commit is contained in:
ProgramFOX 2014-12-23 16:39:24 +01:00
parent 0109cc3ffc
commit 07d37af37e
2 changed files with 41 additions and 2 deletions

View file

@ -20,8 +20,10 @@ interface CSSStyleDeclaration {
[TreatNullAs=EmptyString] optional DOMString priority = "");
[Throws]
void setPropertyValue(DOMString property, [TreatNullAs=EmptyString] DOMString value);
//[Throws]
//void setPropertyPriority(DOMString property, [TreatNullAs=EmptyString] DOMString priority);
[Throws]
void setPropertyPriority(DOMString property, [TreatNullAs=EmptyString] DOMString priority);
DOMString removeProperty(DOMString property);
//readonly attribute CSSRule? parentRule;
[SetterThrows]