| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix obsolete format traits. | Ms2ger | 2015-01-02 | 1 | -1/+1 |
* | layout: to_string() -> into_string() | Manish Goregaokar | 2014-12-27 | 1 | -1/+1 |
* | gfx: Clip the background properly when `border-radius` is used. | Patrick Walton | 2014-12-22 | 1 | -2/+4 |
* | gfx: Refactor the border drawing code and split out fragment display | Patrick Walton | 2014-12-22 | 1 | -2/+1 |
* | script: Remove glob imports added in #4405 | Tetsuharu OHZEKI | 2014-12-19 | 1 | -21/+19 |
* | compositing: Implement `cursor` per CSS3-UI § 8.1.1 in the CEF/Mac port. | Patrick Walton | 2014-12-17 | 1 | -66/+90 |
* | Update rustc to revision 3dcd2157403163789aaf21a9ab3c4d30a7c6494d. | Ms2ger | 2014-12-17 | 1 | -38/+38 |
* | Remove some manual deref() / deref_mut() calls. | Ms2ger | 2014-12-16 | 1 | -5/+5 |
* | style: Implement quirks mode rules. | Patrick Walton | 2014-12-15 | 1 | -1/+11 |
* | script: Add some workarounds for image cache task races | Patrick Walton | 2014-12-15 | 1 | -0/+4 |
* | Replace almost "render" to "paint" in layout crate. | Tetsuharu OHZEKI | 2014-12-08 | 1 | -2/+2 |
* | Rename gfx::paint_task::Msg | Tetsuharu OHZEKI | 2014-12-08 | 1 | -2/+2 |
* | Rename RenderChan -> PaintChan | Tetsuharu OHZEKI | 2014-12-08 | 1 | -8/+8 |
* | Rename RenderLayer -> PaintLayer | Tetsuharu OHZEKI | 2014-12-08 | 1 | -3/+3 |
* | Rename gfx/render_task.rs -> gfx/paint_task.rs | Tetsuharu OHZEKI | 2014-12-08 | 1 | -2/+2 |
* | Change time::profile's meta booleans to enums. | Timothy B. Terriberry | 2014-12-05 | 1 | -11/+19 |
* | layout: Implement `opacity` per CSS-COLOR § 3.2. | Patrick Walton | 2014-12-03 | 1 | -9/+10 |
* | gfx: Rewrite display list construction to make stacking-contexts more | Patrick Walton | 2014-11-14 | 1 | -70/+37 |
* | Rust upgrade to rustc hash b03a2755193cd756583bcf5831cf4545d75ecb8a | Jack Moffitt | 2014-11-13 | 1 | -18/+17 |
* | Clip display list based on frame viewport | Martin Robinson | 2014-11-11 | 1 | -0/+2 |
* | Make media queries work with resize and page zoom. | Glenn Watson | 2014-11-04 | 1 | -22/+16 |
* | Have ContentBox(es)Queries consult the flow tree | Martin Robinson | 2014-11-03 | 1 | -149/+206 |
* | layout: Make incremental reflow more fine-grained by introducing "reflow | Patrick Walton | 2014-10-31 | 1 | -4/+6 |
* | auto merge of #3839 : pcwalton/servo/fewer-moves-in-dls, r=glennw | bors-servo | 2014-10-28 | 1 | -6/+5 |
|\ |
|
| * | layout: Use the new `append_from` method to get rid of a bunch of moves | Patrick Walton | 2014-10-28 | 1 | -6/+5 |
* | | auto merge of #3837 : pcwalton/servo/layout-formatting-cleanups, r=metajack | bors-servo | 2014-10-28 | 1 | -50/+83 |
|\ \
| |/
|/| |
|
| * | layout: Make some formatting cleanups. | Patrick Walton | 2014-10-28 | 1 | -50/+83 |
* | | auto merge of #3828 : cgaebel/servo/layout-node-dumping, r=pcwalton | bors-servo | 2014-10-28 | 1 | -1/+4 |
|\ \
| |/
|/| |
|
| * | layout: Implement flow tree dumping with RUST_LOG=debug is on. | Clark Gaebel | 2014-10-28 | 1 | -1/+4 |
* | | remove warning | Clark Gaebel | 2014-10-28 | 1 | -1/+1 |
* | | combine conditions | Clark Gaebel | 2014-10-28 | 1 | -4/+2 |
* | | Layout: Fix resize (which just plain doesn't work right now). | Clark Gaebel | 2014-10-28 | 1 | -13/+41 |
|/ |
|
* | Dynamically check DOMRefCell access from layout in debug builds | Keegan McAllister | 2014-10-24 | 1 | -2/+4 |
* | layout: Don't destroy the flow tree when resizing the window | Patrick Walton | 2014-10-20 | 1 | -3/+1 |
* | Fixes the table_percentage_width_a.html reftest with incremental reflow turne... | Clark Gaebel | 2014-10-20 | 1 | -14/+3 |
* | Use opts as a global, to avoid cloning and passing the struct all over the code. | Glenn Watson | 2014-10-20 | 1 | -21/+13 |
* | auto merge of #3719 : mrobinson/servo/flow-dump, r=pcwalton | bors-servo | 2014-10-17 | 1 | -3/+4 |
|\ |
|
| * | Wait to dump flow tree until flow is complete | Martin Robinson | 2014-10-17 | 1 | -3/+4 |
* | | Fixed the inline_element_border_a reftest with incremental layout turned on. | Clark Gaebel | 2014-10-17 | 1 | -0/+4 |
* | | Fix image_dynamic_remove reftest with incremental layout turned out | Clark Gaebel | 2014-10-17 | 1 | -0/+1 |
|/ |
|
* | auto merge of #3692 : cgaebel/servo/fix-incremental-append-style, r=pcwalton | bors-servo | 2014-10-15 | 1 | -7/+3 |
|\ |
|
| * | Fix append_style reftests with incremental reflow turned on. | Clark Gaebel | 2014-10-15 | 1 | -7/+3 |
* | | Use the Deref traits for FlowRefs. | Clark Gaebel | 2014-10-15 | 1 | -12/+12 |
|/ |
|
* | auto merge of #3668 : cgaebel/servo/sequential-reflow, r=pcwalton | bors-servo | 2014-10-14 | 1 | -57/+19 |
|\ |
|
| * | Removes duplicate CSS selector matching logic. | Clark Gaebel | 2014-10-14 | 1 | -57/+19 |
* | | auto merge of #3610 : glennw/servo/media-queries, r=SimonSapin | bors-servo | 2014-10-14 | 1 | -3/+10 |
|\ \
| |/
|/| |
|
| * | Implement media queries parser and matching. Improves mobile first sites like... | Glenn Watson | 2014-10-15 | 1 | -3/+10 |
* | | auto merge of #3640 : cgaebel/servo/incremental-flow-construction, r=pcwalton | bors-servo | 2014-10-14 | 1 | -9/+24 |
|\ \
| |/
|/| |
|
| * | try to reset flows which need reflow, since reflow isn't yet idempotent | Clark Gaebel | 2014-10-14 | 1 | -9/+24 |
* | | auto merge of #3675 : glennw/servo/local-fonts, r=pcwalton | bors-servo | 2014-10-14 | 1 | -2/+2 |
|\ \
| |/
|/| |
|