Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Rename Promise::new to Promise::new_in_current_compartment | Aron Zwaan | 2019-04-03 | 1 | -1/+2 |
| | |||||
* | Update MPL license to https (part 3) | Jan Andre Ikenmeyer | 2018-11-19 | 1 | -1/+1 |
| | |||||
* | Format remaining files | Pyfisch | 2018-11-06 | 1 | -2/+3 |
| | |||||
* | `cargo fix --edition` | Simon Sapin | 2018-11-06 | 1 | -10/+10 |
| | |||||
* | Update hyper to 0.12 | Bastien Orivel | 2018-11-01 | 1 | -17/+16 |
| | |||||
* | Format script component | chansuke | 2018-09-19 | 1 | -33/+48 |
| | |||||
* | Adapt Servo for mozjs 0.6 and the changes introduced in servo/rust-mozjs#393 | Marcin Mielniczuk | 2018-03-28 | 1 | -2/+2 |
| | |||||
* | Assert that we successfully got the pending exception | Yusuf Simonson | 2018-03-28 | 1 | -1/+1 |
| | |||||
* | Reordered imports to pass tidy | Yusuf Simonson | 2018-03-27 | 1 | -2/+2 |
| | |||||
* | Properly rethrow any exceptions from parsing JSON in Body mixin's `Json()` | Yusuf Simonson | 2018-03-27 | 1 | -3/+8 |
| | |||||
* | refactor(consume_body): json stored in roottraceablebox | OJ Kwon | 2018-03-24 | 1 | -2/+3 |
| | |||||
* | feat(consume_body): implement consume_body accepts arraybuffer | OJ Kwon | 2018-03-24 | 1 | -0/+21 |
| | |||||
* | feat(webidl): expose arraybuffer overload in body idl | OJ Kwon | 2018-03-23 | 1 | -1/+2 |
| | |||||
* | Replace all uses of the `heapsize` crate with `malloc_size_of`. | Nicholas Nethercote | 2017-10-18 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Servo currently uses `heapsize`, but Stylo/Gecko use `malloc_size_of`. `malloc_size_of` is better -- it handles various cases that `heapsize` does not -- so this patch changes Servo to use `malloc_size_of`. This patch makes the following changes to the `malloc_size_of` crate. - Adds `MallocSizeOf` trait implementations for numerous types, some built-in (e.g. `VecDeque`), some external and Servo-only (e.g. `string_cache`). - Makes `enclosing_size_of_op` optional, because vanilla jemalloc doesn't support that operation. - For `HashSet`/`HashMap`, falls back to a computed estimate when `enclosing_size_of_op` isn't available. - Adds an extern "C" `malloc_size_of` function that does the actual heap measurement; this is based on the same functions from the `heapsize` crate. This patch makes the following changes elsewhere. - Converts all the uses of `heapsize` to instead use `malloc_size_of`. - Disables the "heapsize"/"heap_size" feature for the external crates that provide it. - Removes the `HeapSizeOf` implementation from `hashglobe`. - Adds `ignore` annotations to a few `Rc`/`Arc`, because `malloc_size_of` doesn't derive those types, unlike `heapsize`. | ||||
* | Rename Root<T> to DomRoot<T> | Anthony Ramine | 2017-09-26 | 1 | -3/+3 |
| | | | | | | | 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 |
| | |||||
* | Make Promise::reject_error sound | Anthony Ramine | 2017-09-22 | 1 | -4/+4 |
| | |||||
* | Make Promise::resolve_native actually sound | Anthony Ramine | 2017-09-21 | 1 | -4/+4 |
| | | | | | We shouldn't have to pass a raw JSContext pointer, and to enter the promise's context's compartment by hand. | ||||
* | order derivable traits lists | Clément DAVID | 2017-08-23 | 1 | -1/+1 |
| | | | | | | Ignoring : - **generated**.rs - python/tidy/servo_tidy_tests/rust_tidy.rs | ||||
* | Untry script | Simon Sapin | 2017-06-18 | 1 | -2/+2 |
| | |||||
* | Remove some usage of rust-encoding | Simon Sapin | 2017-05-27 | 1 | -5/+2 |
| | |||||
* | Rename `Reflectable` to `DomObject`. | Corey Farwell | 2016-12-08 | 1 | -10/+10 |
| | | | | Fixes https://github.com/servo/servo/issues/8473. | ||||
* | Rename Reflectable::global_scope to global | Anthony Ramine | 2016-10-06 | 1 | -4/+4 |
| | |||||
* | Remove Reflectable::global | Anthony Ramine | 2016-10-06 | 1 | -2/+2 |
| | |||||
* | Make Promise::new take a &GlobalScope | Anthony Ramine | 2016-10-06 | 1 | -1/+1 |
| | |||||
* | Introduce Reflectable::global_scope | Anthony Ramine | 2016-10-06 | 1 | -3/+4 |
| | |||||
* | Make reflect_dom_object take a &GlobalScope | Anthony Ramine | 2016-10-06 | 1 | -5/+5 |
| | |||||
* | Provide the fetched data to fetch() consumers. | Ms2ger | 2016-10-06 | 1 | -7/+24 |
| | |||||
* | Auto merge of #13577 - servo:warnings, r=jdm | bors-servo | 2016-10-05 | 1 | -2/+0 |
|\ | | | | | | | | | | | | | | | Squash some build warnings. <!-- 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/13577) <!-- Reviewable:end --> | ||||
| * | Squash some build warnings. | Ms2ger | 2016-10-04 | 1 | -2/+0 |
| | | |||||
* | | Revert "Make DOMRefCell use style’s copy of RefCell" | Simon Sapin | 2016-10-04 | 1 | -1/+1 |
|/ | | | | This reverts commit ec723057b2360446790d436fe5e234d798fb4175. | ||||
* | impl Body mixin for dom::Response and dom::Request | Malisa Smith | 2016-09-28 | 1 | -0/+164 |