aboutsummaryrefslogtreecommitdiffstats
path: root/components/util/cursor.rs
Commit message (Collapse)AuthorAgeFilesLines
* Move util::cursor to style_traitsAnthony Ramine2016-02-161-74/+0
|
* Say farewell to in-tree HeapSizeOfAnthony Ramine2016-02-041-1/+1
|
* Update cssparser.Simon Sapin2016-01-211-1/+1
| | | | https://github.com/servo/rust-cssparser/pull/91
* Fix issues found by rust-clippyCorey Farwell2015-10-121-2/+2
|
* gfx: Make display lists serializable using `serde`.Patrick Walton2015-07-151-1/+1
| | | | | | | | | This commit introduces the `serde` dependency, which we will use to serialize messages going between processes in multiprocess Servo. This also adds a new debugging flag, `-Z print-display-list-json`, allowing the output of display list serialization to be visualized. This will be useful for our experiments with alternate rasterizers.
* Upgrade to rustc 551a74dddd84cf01440ee84148ebd18bc68bd7c8.Simon Sapin2015-05-051-3/+2
|
* Upgrade to rustc ba2f13ef0 2015-02-04Simon Sapin2015-02-111-1/+1
|
* Update rustc to 00b112c45a604fa6f4b59af2a40c9deeadfdb7c6/rustc-1.0.0-dev.Josh Matthews2015-01-281-3/+2
|
* Update rustc to revision 2cfb5acb5a2751c759627377e602bac4f88f2d19.Ms2ger2015-01-081-1/+1
|
* Fix typo in a cursor keyword. Thanks @nuss-justin!Simon Sapin2014-12-291-1/+1
|
* Add a match_ignore_ascii_case! macro that does not allocate.Simon Sapin2014-12-291-2/+2
| | | | | | | | | | It should replace `match foo.to_ascii_lower().as_slice() { ...}` @Manishearth I changed map.get to map.find in the lint to work around an ICE: task 'rustc' panicked at 'couldn't find node id 0 in the AST map' Does this look OK?
* Implement ToCss for Cursor and de-duplicate variants and string values.Simon Sapin2014-12-291-38/+68
|
* compositing: Implement `cursor` per CSS3-UI § 8.1.1 in the CEF/Mac port.Patrick Walton2014-12-171-0/+46
I'm not sure how we want to handle Linux cursors, and GLFW has no ability to set cursors (short of disabling it and managing it yourself).