diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2016-11-07 14:34:22 -0800 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2016-11-11 11:55:57 -0800 |
commit | e34eb13d6583249e2d159cfeece2c5f12fe465ad (patch) | |
tree | af8abe077fbeccbb5e0097f2972a4ccf9f8c1e71 /components/script | |
parent | f1c3e97fb47b6fbe1d82ebb30a38ab7afd4fe0b8 (diff) | |
download | servo-e34eb13d6583249e2d159cfeece2c5f12fe465ad.tar.gz servo-e34eb13d6583249e2d159cfeece2c5f12fe465ad.zip |
Support logical properties
Diffstat (limited to 'components/script')
-rw-r--r-- | components/script/dom/webidls/CSSStyleDeclaration.webidl | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/components/script/dom/webidls/CSSStyleDeclaration.webidl b/components/script/dom/webidls/CSSStyleDeclaration.webidl index c64ecd119c7..a8cd456c41d 100644 --- a/components/script/dom/webidls/CSSStyleDeclaration.webidl +++ b/components/script/dom/webidls/CSSStyleDeclaration.webidl @@ -103,6 +103,31 @@ partial interface CSSStyleDeclaration { [SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderTopWidth; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-top-width; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-block-start-color; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderBlockStartColor; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-block-start-width; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderBlockStartWidth; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-block-start-style; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderBlockStartStyle; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-block-end-color; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderBlockEndColor; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-block-end-width; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderBlockEndWidth; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-block-end-style; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderBlockEndStyle; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-inline-start-color; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderInlineStartColor; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-inline-start-width; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderInlineStartWidth; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-inline-start-style; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderInlineStartStyle; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-inline-end-color; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderInlineEndColor; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-inline-end-width; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderInlineEndWidth; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-inline-end-style; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderInlineEndStyle; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString content; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString color; |