aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/CSSStyleDeclaration.webidl
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2016-11-08 14:40:18 -0800
committerManish Goregaokar <manishsmail@gmail.com>2016-11-11 11:56:27 -0800
commit5fad7b0ff66ea20ca767f8c29e1be67ae5a47cab (patch)
tree0566f25bcc0a7c864d0ff2258f31108d4da0ba30 /components/script/dom/webidls/CSSStyleDeclaration.webidl
parentf974719d9fb39d8b398043ea8473e15c53964667 (diff)
downloadservo-5fad7b0ff66ea20ca767f8c29e1be67ae5a47cab.tar.gz
servo-5fad7b0ff66ea20ca767f8c29e1be67ae5a47cab.zip
Add support for inline-size, block-size, and max-*-size/min-*-size
Diffstat (limited to 'components/script/dom/webidls/CSSStyleDeclaration.webidl')
-rw-r--r--components/script/dom/webidls/CSSStyleDeclaration.webidl12
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;