aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/cssstyledeclaration.rs
Commit message (Collapse)AuthorAgeFilesLines
* Documentation and cleanup.Josh Matthews2015-03-031-4/+2
|
* Move everything unrelated to the frame tree out of Page and into Document or ↵Josh Matthews2015-03-031-5/+3
| | | | Window. Reduce the API surface of Page to a bare minimum to allow for easier future removal.
* Replace uint/int by usize/isize in various places.Ms2ger2015-02-201-3/+4
|
* End the libstyle 'pub use' madness.Simon Sapin2015-01-301-2/+2
|
* Import the util crate as util rather than servo_util.Ms2ger2015-01-291-1/+1
| | | | | | | | This used to conflict with the util crate from the standard library, which has long since been removed. The import in layout has not been changed because of a conflict with the util mod there.
* self importManish Goregaokar2015-01-281-1/+1
|
* Update rustc to 00b112c45a604fa6f4b59af2a40c9deeadfdb7c6/rustc-1.0.0-dev.Josh Matthews2015-01-281-12/+12
|
* Move to to_owned rather than into_string.Ms2ger2015-01-201-11/+12
| | | | into_string has been removed from Rust.
* Share supported CSS properties between style and CSSStyleDeclarationBruno de Oliveira Abinader2015-01-191-89/+1
| | | | | | | | | | | 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.
* Remove unsound Root::deref() calls in CSSStyleDeclaration.Ms2ger2015-01-011-0/+2
|
* Replace Root::deref() calls by Root::r() calls where possible.Ms2ger2015-01-011-11/+11
| | | | This changes those calls that were already sound.
* Replace the remaining to_string calls by into_string calls.Ms2ger2014-12-311-11/+11
|
* Added readonly flag for CSSStyleDeclarationProgramFOX2014-12-281-11/+29
|
* Fix warnings post-upgradeManish Goregaokar2014-12-271-7/+1
|
* Replace bool attribute in Element::update_inline_style with a descriptive enumthiagopnts2014-12-241-3/+5
|
* Add GetPropertyPriority to CSSStyleDeclarationAdam Sunderland2014-12-231-0/+31
| | | | | | | | | | | | | | 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-0/+37
| | | | Implemented CSSStyleDeclaration.setPropertyPriority, resolves #4433
* script: Remove glob imports added in #4405Tetsuharu OHZEKI2014-12-191-2/+2
|
* Add missing supported CSS properties.Josh Matthews2014-12-181-0/+18
|
* Address review comments.Josh Matthews2014-12-181-219/+81
|
* Merge CSS2Properties and CSSStyleDeclaration.Josh Matthews2014-12-181-5/+235
|
* Slight simplification.Josh Matthews2014-12-181-2/+0
|
* Address review comments.Josh Matthews2014-12-181-69/+50
|
* Implement RemoveProperty, SetProperty, and supported property indices.Josh Matthews2014-12-181-51/+108
|
* Implement setting element style properties. Improve serialization to return ↵Josh Matthews2014-12-181-14/+63
| | | | initial values when unspecified.
* Implement something like CSS value serialization. Fetch actual inline style ↵Josh Matthews2014-12-181-37/+48
| | | | declarations from owning elements.
* Add a style property to HTMLElement.Josh Matthews2014-12-181-1/+9
|
* Stub in some uses of getPropertyValue and sketch out its implementation.Josh Matthews2014-12-181-2/+71
|
* Add stub CSS2Properties type.Josh Matthews2014-12-181-1/+0
|
* Add the basic CSSStyleDeclaration CSSOM interface.Cameron Zwarich2014-12-181-0/+68
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.