Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Documentation and cleanup. | Josh Matthews | 2015-03-03 | 1 | -4/+2 |
| | |||||
* | Move everything unrelated to the frame tree out of Page and into Document or ↵ | Josh Matthews | 2015-03-03 | 1 | -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. | Ms2ger | 2015-02-20 | 1 | -3/+4 |
| | |||||
* | End the libstyle 'pub use' madness. | Simon Sapin | 2015-01-30 | 1 | -2/+2 |
| | |||||
* | Import the util crate as util rather than servo_util. | Ms2ger | 2015-01-29 | 1 | -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 import | Manish Goregaokar | 2015-01-28 | 1 | -1/+1 |
| | |||||
* | Update rustc to 00b112c45a604fa6f4b59af2a40c9deeadfdb7c6/rustc-1.0.0-dev. | Josh Matthews | 2015-01-28 | 1 | -12/+12 |
| | |||||
* | Move to to_owned rather than into_string. | Ms2ger | 2015-01-20 | 1 | -11/+12 |
| | | | | into_string has been removed from Rust. | ||||
* | Share supported CSS properties between style and CSSStyleDeclaration | Bruno de Oliveira Abinader | 2015-01-19 | 1 | -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. | Ms2ger | 2015-01-01 | 1 | -0/+2 |
| | |||||
* | Replace Root::deref() calls by Root::r() calls where possible. | Ms2ger | 2015-01-01 | 1 | -11/+11 |
| | | | | This changes those calls that were already sound. | ||||
* | Replace the remaining to_string calls by into_string calls. | Ms2ger | 2014-12-31 | 1 | -11/+11 |
| | |||||
* | Added readonly flag for CSSStyleDeclaration | ProgramFOX | 2014-12-28 | 1 | -11/+29 |
| | |||||
* | Fix warnings post-upgrade | Manish Goregaokar | 2014-12-27 | 1 | -7/+1 |
| | |||||
* | Replace bool attribute in Element::update_inline_style with a descriptive enum | thiagopnts | 2014-12-24 | 1 | -3/+5 |
| | |||||
* | Add GetPropertyPriority to CSSStyleDeclaration | Adam Sunderland | 2014-12-23 | 1 | -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.setPropertyPriority | ProgramFOX | 2014-12-23 | 1 | -0/+37 |
| | | | | Implemented CSSStyleDeclaration.setPropertyPriority, resolves #4433 | ||||
* | script: Remove glob imports added in #4405 | Tetsuharu OHZEKI | 2014-12-19 | 1 | -2/+2 |
| | |||||
* | Add missing supported CSS properties. | Josh Matthews | 2014-12-18 | 1 | -0/+18 |
| | |||||
* | Address review comments. | Josh Matthews | 2014-12-18 | 1 | -219/+81 |
| | |||||
* | Merge CSS2Properties and CSSStyleDeclaration. | Josh Matthews | 2014-12-18 | 1 | -5/+235 |
| | |||||
* | Slight simplification. | Josh Matthews | 2014-12-18 | 1 | -2/+0 |
| | |||||
* | Address review comments. | Josh Matthews | 2014-12-18 | 1 | -69/+50 |
| | |||||
* | Implement RemoveProperty, SetProperty, and supported property indices. | Josh Matthews | 2014-12-18 | 1 | -51/+108 |
| | |||||
* | Implement setting element style properties. Improve serialization to return ↵ | Josh Matthews | 2014-12-18 | 1 | -14/+63 |
| | | | | initial values when unspecified. | ||||
* | Implement something like CSS value serialization. Fetch actual inline style ↵ | Josh Matthews | 2014-12-18 | 1 | -37/+48 |
| | | | | declarations from owning elements. | ||||
* | Add a style property to HTMLElement. | Josh Matthews | 2014-12-18 | 1 | -1/+9 |
| | |||||
* | Stub in some uses of getPropertyValue and sketch out its implementation. | Josh Matthews | 2014-12-18 | 1 | -2/+71 |
| | |||||
* | Add stub CSS2Properties type. | Josh Matthews | 2014-12-18 | 1 | -1/+0 |
| | |||||
* | Add the basic CSSStyleDeclaration CSSOM interface. | Cameron Zwarich | 2014-12-18 | 1 | -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. |