Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Strict import formatting (grouping and granularity) (#30325) | Samson | 2023-09-11 | 1 | -5/+6 |
| | | | | | * strict imports formatting * Reformat all imports | ||||
* | Rename reflect_dom_object2. | Josh Matthews | 2023-05-31 | 1 | -2/+2 |
| | |||||
* | Support arbitrary protos when wrapping DOM objects with constructors. | Josh Matthews | 2023-05-28 | 1 | -4/+30 |
| | |||||
* | Use ExtendableMessageEvent for messageerror in service workers | Kyle Nosar | 2020-07-30 | 1 | -2/+22 |
| | |||||
* | Add trait DomObjectWrap to provide WRAP function | YUAN LYU | 2020-03-20 | 1 | -1/+1 |
| | |||||
* | alphabetized frozen supported entry types on the global, avoid moving Heap ↵ | Patrick Shaughnessy | 2020-02-14 | 1 | -4/+7 |
| | | | | into Option | ||||
* | Modify `script` to prevent further violations of snake_case | Kunal Mohan | 2020-01-18 | 1 | -0/+3 |
| | |||||
* | cache frozen array of ports | Gregory Terzian | 2020-01-12 | 1 | -1/+16 |
| | |||||
* | add a generic utility to convert a slice into a frozen array | Gregory Terzian | 2020-01-11 | 1 | -2/+2 |
| | |||||
* | use dom and new_inherited in (extendable)messageevent | Gregory Terzian | 2020-01-09 | 1 | -7/+27 |
| | |||||
* | continue messageport, transferable, postmessage options | Gregory Terzian | 2019-10-19 | 1 | -3/+20 |
| | |||||
* | Convert CGTraitInterface to use safe JSContext instead of raw JSContext | marmeladema | 2019-07-24 | 1 | -3/+3 |
| | |||||
* | Remove mozjs dep from malloc_size_of. | Josh Matthews | 2019-05-02 | 1 | -0/+1 |
| | |||||
* | Update MPL license to https (part 3) | Jan Andre Ikenmeyer | 2018-11-19 | 1 | -1/+1 |
| | |||||
* | `cargo fix --edition` | Simon Sapin | 2018-11-06 | 1 | -13/+13 |
| | |||||
* | Format script component | chansuke | 2018-09-19 | 1 | -20/+32 |
| | |||||
* | Adapt Servo for mozjs 0.6 and the changes introduced in servo/rust-mozjs#393 | Marcin Mielniczuk | 2018-03-28 | 1 | -1/+2 |
| | |||||
* | Remove use of unstable box syntax. | Simon Sapin | 2017-10-16 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | 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 | -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 |
| | |||||
* | Fix unsafe Heap constructor usage in DOM objects | Imanol Fernandez | 2017-05-04 | 1 | -1/+3 |
| | |||||
* | Make #[dom_struct] a proc_macro attribute | Anthony Ramine | 2017-02-24 | 1 | -0/+1 |
| | |||||
* | Use RootedTraceableBox for dictionaries. | Ms2ger | 2017-02-16 | 1 | -3/+3 |
| | |||||
* | Use Heap for dictionary and union members. | Ms2ger | 2017-02-16 | 1 | -1/+1 |
| | |||||
* | Remove warnings about unnecessary mutability. | Alan Jeffrey | 2017-01-28 | 1 | -4/+2 |
| | |||||
* | Make WebIDL constructors take a more specific global if possible (fixes #14071) | Rohan Prinja | 2016-11-30 | 1 | -1/+3 |
| | |||||
* | script creates methods taking '*mut JSContext' unsafe | Abelardo E. Mendoza | 2016-11-14 | 1 | -1/+2 |
| | | | | rebase + marked the necessary new code as unsafe | ||||
* | Update to string-cache 0.3 | Simon Sapin | 2016-11-03 | 1 | -1/+1 |
| | |||||
* | Pass a &GlobalScope to WebIDL static methods and constructors | Anthony Ramine | 2016-10-06 | 1 | -3/+2 |
| | |||||
* | Make dispatch_jsval methods take a &GlobalScope | Anthony Ramine | 2016-10-06 | 1 | -2/+2 |
| | |||||
* | Make reflect_dom_object take a &GlobalScope | Anthony Ramine | 2016-10-06 | 1 | -3/+5 |
| | |||||
* | implement ExtendableEvent as base type for ServiceWorker events | Rahul Sharma | 2016-09-17 | 1 | -0/+95 |