diff options
author | Manish Goregaokar <manishsmail@gmail.com> | 2016-11-08 14:40:18 -0800 |
---|---|---|
committer | Manish Goregaokar <manishsmail@gmail.com> | 2016-11-11 11:56:27 -0800 |
commit | 5fad7b0ff66ea20ca767f8c29e1be67ae5a47cab (patch) | |
tree | 0566f25bcc0a7c864d0ff2258f31108d4da0ba30 /components/script | |
parent | f974719d9fb39d8b398043ea8473e15c53964667 (diff) | |
download | servo-5fad7b0ff66ea20ca767f8c29e1be67ae5a47cab.tar.gz servo-5fad7b0ff66ea20ca767f8c29e1be67ae5a47cab.zip |
Add support for inline-size, block-size, and max-*-size/min-*-size
Diffstat (limited to 'components/script')
-rw-r--r-- | components/script/dom/webidls/CSSStyleDeclaration.webidl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/components/script/dom/webidls/CSSStyleDeclaration.webidl b/components/script/dom/webidls/CSSStyleDeclaration.webidl index 3cc11418150..3424e5593a6 100644 --- a/components/script/dom/webidls/CSSStyleDeclaration.webidl +++ b/components/script/dom/webidls/CSSStyleDeclaration.webidl @@ -333,6 +333,18 @@ partial interface CSSStyleDeclaration { [SetterThrows, TreatNullAs=EmptyString] attribute DOMString min-width; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString maxWidth; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString max-width; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString block-size; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString blockSize; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString inline-size; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString inlineSize; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString max-block-size; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString maxBlockSize; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString max-inline-size; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString maxInlineSize; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString min-block-size; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString minBlockSize; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString min-inline-size; + [SetterThrows, TreatNullAs=EmptyString] attribute DOMString minInlineSize; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString zIndex; [SetterThrows, TreatNullAs=EmptyString] attribute DOMString z-index; |