aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/CSSStyleDeclaration.webidl
Commit message (Collapse)AuthorAgeFilesLines
...
| * layout: Implement `text-overflow: ellipsis` per CSS-UI-3 § 6.2.Patrick Walton2015-01-281-0/+1
| | | | | | | | Only the one-value syntax is supported for now.
* | gfx: Implement `font-stretch` per CSS3-FONTS § 3.3 in the Core TextPatrick Walton2015-01-281-0/+1
|/ | | | font backend.
* Share supported CSS properties between style and CSSStyleDeclarationBruno de Oliveira Abinader2015-01-191-0/+18
| | | | | | | | | | | Avoids duplicated code when implementing the CSS properties accessors in CSSStyleDeclaration WebIDL. Servo internal CSS properties are not accessible. CSS property "float" is unnacessible because we currently lack support for BinaryName IDL annotation (#4435). Fixes #4429, #4430.
* Added readonly flag for CSSStyleDeclarationProgramFOX2014-12-281-0/+1
|
* Add GetPropertyPriority to CSSStyleDeclarationAdam Sunderland2014-12-231-1/+1
| | | | | | | | | | | | | | Tweak getPropertyPriority to match recommendations Adding Tests for Style Priority Use else if Adding Content Test for GetPropertyPriority Revert "Adding Tests for Style Priority" This reverts commit 8666a37f833b06c3e43f27acd8a9678e94425e55.
* Implemented CSSStyleDeclaration.setPropertyPriorityProgramFOX2014-12-231-2/+4
| | | | Implemented CSSStyleDeclaration.setPropertyPriority, resolves #4433
* Add missing supported CSS properties.Josh Matthews2014-12-181-0/+24
|
* Merge CSS2Properties and CSSStyleDeclaration.Josh Matthews2014-12-181-0/+95
|
* Address review comments.Josh Matthews2014-12-181-2/+1
|
* Implement RemoveProperty, SetProperty, and supported property indices.Josh Matthews2014-12-181-7/+7
|
* Add the basic CSSStyleDeclaration CSSOM interface.Cameron Zwarich2014-12-181-0/+31
This just includes the .webidl file (with some of the functionality commented out) and the stub implementations for the bindings. This is another step towards #1721.