mirror of
https://github.com/servo/servo.git
synced 2025-06-08 00:23:30 +00:00
csstext
- [x] These changes fix #4431.
- [x] `./mach build -d` does not report any errors
- [x] `./mach test-tidy --faster` reports one error for the `css_properties_accessors!` macro not having a spec link
```
$ git log -1 --format=oneline
91fb9bf1d3
fixup! implement cssText
$ ./mach build -d
Compiling style v0.0.1 (file:///Users/greg/servo/components/style)
Compiling gfx v0.0.1 (file:///Users/greg/servo/components/gfx)
Compiling script v0.0.1 (file:///Users/greg/servo/components/script)
Compiling layout_traits v0.0.1 (file:///Users/greg/servo/components/layout_traits)
Compiling compositing v0.0.1 (file:///Users/greg/servo/components/compositing)
Compiling glutin_app v0.0.1 (file:///Users/greg/servo/ports/glutin)
Compiling constellation v0.0.1 (file:///Users/greg/servo/components/constellation)
Compiling layout v0.0.1 (file:///Users/greg/servo/components/layout)
Compiling servo v0.0.1 (file:///Users/greg/servo/components/servo)
Build completed in 0:05:11.475584
$ ./mach test-tidy --faster
Checking files for tidiness...
./components/script/dom/cssstyledeclaration.rs:386: method declared in webidl is missing a comment with a specification link
Progress: 100% (12/12)
```
- [x] There are tests for these changes. More CSSOM tests pass, but others fail that probably shouldn't:
* `./mach test-css tests/wpt/css-tests/cssom-1_dev/html/index-002.htm` and a bunch of the other tests in `/css-tests/cssom-1_dev/html/ crash when run individually
* `./mach test-css tests/wpt/css-tests/cssom-1_dev/html/cssom-cssText-serialize.htm` fails to strip a trailing semicolon (`left: 10px` vs `left: 10px;`)
* `./mach test-css tests/wpt/css-tests/cssom-1_dev/html/index-001.htm` shared shorthand values aren't coalesced (`margin: 20px` vs. `margin: 20px 20px 20px 20px`)
* `./mach test-css tests/wpt/css-tests/cssom-1_dev/html/cssstyledeclaration-csstext.htm` also crashes and fails for `color: red;` vs. `color: RED;`, preserving declaration insertion order, whitespace in the value, and setting an unknown style property.
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11428)
<!-- Reviewable:end -->
330 lines
20 KiB
Text
330 lines
20 KiB
Text
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
/*
|
|
* The origin of this IDL file is
|
|
* http://dev.w3.org/csswg/cssom/#the-cssstyledeclaration-interface
|
|
*
|
|
* Copyright © 2013 W3C® (MIT, ERCIM, Keio, Beihang), All Rights Reserved.
|
|
*/
|
|
|
|
interface CSSStyleDeclaration {
|
|
[SetterThrows]
|
|
attribute DOMString cssText;
|
|
readonly attribute unsigned long length;
|
|
getter DOMString item(unsigned long index);
|
|
DOMString getPropertyValue(DOMString property);
|
|
DOMString getPropertyPriority(DOMString property);
|
|
[Throws]
|
|
void setProperty(DOMString property, [TreatNullAs=EmptyString] DOMString value,
|
|
[TreatNullAs=EmptyString] optional DOMString priority = "");
|
|
[Throws]
|
|
void setPropertyValue(DOMString property, [TreatNullAs=EmptyString] DOMString value);
|
|
|
|
[Throws]
|
|
void setPropertyPriority(DOMString property, [TreatNullAs=EmptyString] DOMString priority);
|
|
|
|
[Throws]
|
|
DOMString removeProperty(DOMString property);
|
|
//readonly attribute CSSRule? parentRule;
|
|
[SetterThrows]
|
|
attribute DOMString cssFloat;
|
|
};
|
|
|
|
partial interface CSSStyleDeclaration {
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString background;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString backgroundColor;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString background-color;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString backgroundPosition;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString background-position;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString backgroundRepeat;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString background-repeat;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString backgroundImage;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString background-image;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString backgroundAttachment;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString background-attachment;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString backgroundSize;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString background-size;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString backgroundOrigin;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString background-origin;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString backgroundClip;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString background-clip;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderColor;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-color;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderRadius;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-radius;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderSpacing;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-spacing;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderStyle;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-style;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderWidth;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-width;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderBottom;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-bottom;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderBottomColor;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-bottom-color;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderBottomLeftRadius;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-bottom-left-radius;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderBottomRightRadius;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-bottom-right-radius;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderBottomStyle;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-bottom-style;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderBottomWidth;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-bottom-width;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderLeft;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-left;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderLeftColor;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-left-color;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderLeftStyle;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-left-style;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderLeftWidth;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-left-width;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderRight;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-right;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderRightColor;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-right-color;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderRightStyle;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-right-style;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderRightWidth;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-right-width;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderTop;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-top;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderTopColor;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-top-color;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderTopLeftRadius;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-top-left-radius;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderTopRightRadius;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-top-right-radius;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderTopStyle;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-top-style;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderTopWidth;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-top-width;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString content;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString color;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString display;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString opacity;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString visibility;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString cursor;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString boxSizing;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString box-sizing;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString boxShadow;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString box-shadow;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString textShadow;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString text-shadow;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString _float;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString clear;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString clip;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString transform;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString transformOrigin;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString transform-origin;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString perspective;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString perspectiveOrigin;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString perspective-origin;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString transformStyle;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString transform-style;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString backfaceVisibility;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString backface-visibility;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString direction;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString unicodeBidi;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString unicode-bidi;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString filter;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString lineHeight;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString line-height;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString mixBlendMode;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString mix-blend-mode;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString verticalAlign;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString vertical-align;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString listStyle;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString list-style;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString listStylePosition;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString list-style-position;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString listStyleType;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString list-style-type;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString listStyleImage;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString list-style-image;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString quotes;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString counterIncrement;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString counter-increment;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString counterReset;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString counter-reset;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString overflow;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString overflowX;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString overflow-x;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString overflowY;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString overflow-y;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString overflowWrap;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString overflow-wrap;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString tableLayout;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString table-layout;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString borderCollapse;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString border-collapse;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString emptyCells;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString empty-cells;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString captionSide;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString caption-side;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString whiteSpace;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString white-space;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString writingMode;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString writing-mode;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString letterSpacing;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString letter-spacing;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString wordBreak;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString word-break;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString wordSpacing;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString word-spacing;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString wordWrap;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString word-wrap;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString textOverflow;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString text-overflow;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString textAlign;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString text-align;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString textDecoration;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString text-decoration;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString textIndent;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString text-indent;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString textJustify;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString text-justify;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString textOrientation;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString text-orientation;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString textRendering;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString text-rendering;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString textTransform;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString text-transform;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString font;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString fontFamily;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString font-family;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString fontSize;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString font-size;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString fontStretch;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString font-stretch;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString fontStyle;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString font-style;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString fontVariant;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString font-variant;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString fontWeight;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString font-weight;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString margin;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString marginBottom;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString margin-bottom;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString marginLeft;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString margin-left;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString marginRight;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString margin-right;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString marginTop;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString margin-top;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString padding;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString paddingBottom;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString padding-bottom;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString paddingLeft;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString padding-left;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString paddingRight;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString padding-right;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString paddingTop;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString padding-top;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString outline;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString outlineColor;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString outline-color;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString outlineStyle;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString outline-style;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString outlineWidth;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString outline-width;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString outlineOffset;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString outline-offset;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString position;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString pointerEvents;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString pointer-events;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString top;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString right;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString left;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString bottom;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString height;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString minHeight;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString min-height;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString maxHeight;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString max-height;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString width;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString minWidth;
|
|
[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 zIndex;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString z-index;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString imageRendering;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString image-rendering;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString columnCount;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString column-count;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString columnWidth;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString column-width;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString columns;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString columnGap;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString column-gap;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString transition;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString transitionDuration;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString transition-duration;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString transitionTimingFunction;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString transition-timing-function;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString transitionProperty;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString transition-property;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString transitionDelay;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString transition-delay;
|
|
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString flexDirection;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString flex-direction;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString flexWrap;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString flex-wrap;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString justifyContent;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString justify-content;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString alignItems;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString align-items;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString alignContent;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString align-content;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString order;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString flexBasis;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString flex-basis;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString flexGrow;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString flex-grow;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString flexShrink;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString flex-shrink;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString alignSelf;
|
|
[SetterThrows, TreatNullAs=EmptyString] attribute DOMString align-self;
|
|
};
|