Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove mozjs dep from malloc_size_of. | Josh Matthews | 2019-05-02 | 1 | -0/+6 |
| | |||||
* | Update MPL license to https (part 3) | Jan Andre Ikenmeyer | 2018-11-19 | 1 | -1/+1 |
| | |||||
* | Reorder imports | Pyfisch | 2018-11-06 | 1 | -2/+2 |
| | |||||
* | `cargo fix --edition` | Simon Sapin | 2018-11-06 | 1 | -5/+5 |
| | |||||
* | Format script component | chansuke | 2018-09-19 | 1 | -16/+42 |
| | |||||
* | Replace NonNullJSObjectPtr with std::ptr::NonNull<JSObject> | Simon Sapin | 2018-01-22 | 1 | -9/+9 |
| | |||||
* | Fix tyvar_behind_raw_pointer warnings | Simon Sapin | 2018-01-10 | 1 | -1/+1 |
| | | | | https://github.com/rust-lang/rust/issues/46906 | ||||
* | Replace NonZero<*mut JSObject> with a wrapper to enable local trait impls. | Simon Sapin | 2017-10-16 | 1 | -9/+9 |
| | |||||
* | Remove use of unstable box syntax. | Simon Sapin | 2017-10-16 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | http://www.robohornet.org gives a score of 101.36 on master, and 102.68 with this PR. The latter is slightly better, but probably within noise level. So it looks like this PR does not affect DOM performance. This is expected since `Box::new` is defined as: ```rust impl<T> Box<T> { #[inline(always)] pub fn new(x: T) -> Box<T> { box x } } ``` With inlining, it should compile to the same as box syntax. | ||||
* | Rename Root<T> to DomRoot<T> | Anthony Ramine | 2017-09-26 | 1 | -2/+2 |
| | | | | | | | In a later PR, DomRoot<T> will become a type alias of Root<Dom<T>>, where Root<T> will be able to handle all the things that need to be rooted that have a stable traceable address that doesn't move for the whole lifetime of the root. Stay tuned. | ||||
* | Rename dom::bindings::js to dom::bindings::root | Anthony Ramine | 2017-09-26 | 1 | -1/+1 |
| | |||||
* | Upgrade to rustc 1.21.0-nightly (599be0d18 2017-07-26) | Simon Sapin | 2017-07-27 | 1 | -1/+1 |
| | |||||
* | GC Fixes | Imanol Fernandez | 2017-07-05 | 1 | -1/+3 |
| | |||||
* | Fix unsafe Heap constructor usage in DOM objects | Imanol Fernandez | 2017-05-04 | 1 | -3/+1 |
| | |||||
* | Implement Gamepad API | Imanol Fernandez | 2017-04-12 | 1 | -1/+3 |
| | |||||
* | Make #[dom_struct] a proc_macro attribute | Anthony Ramine | 2017-02-24 | 1 | -0/+1 |
| | |||||
* | Auto merge of #15561 - saneyuki:rm-domrefcell-heap, r=mbrubeck | bors-servo | 2017-02-15 | 1 | -17/+15 |
|\ | | | | | | | | | | | | | | | | | | | | | Stop using DOMRefCell<Heap<..>> Fix https://github.com/servo/servo/issues/15560 <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/15561) <!-- Reviewable:end --> | ||||
| * | Stop using DOMRefCell<Heap<..>>. | Tetsuharu OHZEKI | 2017-02-15 | 1 | -17/+15 |
| | | |||||
* | | Update js. | Ms2ger | 2017-02-15 | 1 | -3/+3 |
|/ | | | | Fixes #15553. | ||||
* | Remove slice_to_array_buffer_view and update_array_buffer_view | deror1869107 | 2017-02-11 | 1 | -3/+6 |
| | |||||
* | Remove warnings about unnecessary mutability. | Alan Jeffrey | 2017-01-28 | 1 | -1/+1 |
| | |||||
* | WebVR API Implementation, r=larsbergstrom | Imanol Fernandez | 2017-01-09 | 1 | -0/+133 |