Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Parse currentColor as Canvas2D color | David Zbarsky | 2015-11-21 | 1 | -4/+12 |
| | |||||
* | Rustfmt some of script. | Ms2ger | 2015-11-18 | 1 | -12/+17 |
| | |||||
* | Make DOMString a newtype around String, rather than a typedef. | Ms2ger | 2015-11-04 | 1 | -1/+2 |
| | | | | | | | | | | This should make it somewhat easier to experiment with alternative representations in the future. To reduce churn, this commit leaves the String field public, though. Also, this will allow us to use the default String type to represent the IDL USVString type, which explicitly forbids unpaired surrogates, ans as such is a better match to the Rust String type. | ||||
* | more refactoring | rohan.prinja | 2015-10-30 | 1 | -1/+1 |
| | |||||
* | Refactor Error enum usage to consistently be qualified | Anthony Urena | 2015-10-06 | 1 | -4/+3 |
| | |||||
* | Make the traits for the IDL interfaces take &self | Anthony Ramine | 2015-08-27 | 1 | -2/+2 |
| | |||||
* | make dom_struct derive HeapSizeOf, | João Oliveira | 2015-08-27 | 1 | -1/+0 |
| | | | | closes #7357 | ||||
* | Measure heap memory usage for more types. Fixes #6951 | Bogdan Cuza | 2015-08-13 | 1 | -1/+2 |
| | |||||
* | CanvasGradient#addColorStop should throw for invalid colors and offsets | David Zbarsky | 2015-08-09 | 1 | -8/+12 |
| | |||||
* | Refactor #[jstraceable] to #[derive(JSTraceable)] | David Winslow | 2015-07-01 | 1 | -2/+1 |
| | | | | fixes #6524 | ||||
* | Upgrade to SM 39 | Michael Wu | 2015-06-19 | 1 | -6/+6 |
| | |||||
* | Replace fill_color and stroke_color with fill_style and stroke_style in ↵ | Hyowon Kim | 2015-06-06 | 1 | -0/+1 |
| | | | | | | | CanvasContextState. The fillStyle and strokeStyle attributes can be either strings(color), CanvasGradients, or CanvasPatterns. | ||||
* | Layerize canvas | ecoal95 | 2015-05-20 | 1 | -1/+1 |
| | | | | | | | Note that this keeps using readback right now, `NativeSurface` painting will be implemented soon. Also see https://github.com/servo/servo/issues/6142 | ||||
* | Fix CanvasGradient.addColorStop() | Anthony Ramine | 2015-04-27 | 1 | -1/+1 |
| | | | | The argument should be a double. | ||||
* | Add/update comments with links to spec | Corey Farwell | 2015-04-14 | 1 | -0/+2 |
| | | | | | | | | | | Extracted out of #5649 * add more hyperlinks to associated specification for structs/methods * follow redirects and update links * replace broken links * removal of WHATWG multipage page name since the page name is not guaranteed to be stable | ||||
* | Remove some unnecessary uses of `as_slice` | Corey Farwell | 2015-03-29 | 1 | -1/+1 |
| | | | | | | | | | | | For the majority of these cases, `as_slice` can be removed due to `Deref`. In particular, `Deref` for: * `String` -> `str` * `Atom` -> `str` The latter of those two requires, a bump of the locked `string-cache` library | ||||
* | Enable `unrestricted` types for `CanvasRenderingContext2D`. | Tetsuharu OHZEKI | 2015-03-25 | 1 | -2/+3 |
| | |||||
* | Implement gradient fill styles for canvas. | Mátyás Mustoha | 2015-03-19 | 1 | -1/+71 |
| | |||||
* | script: Implement enough 2D canvas support to render basic SVGs such as the ↵ | Patrick Walton | 2015-02-22 | 1 | -0/+11 |
tiger. |