Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Support [LegacyWindowAlias] | Kagami Sascha Rosylight | 2019-10-19 | 1 | -0/+7 |
| | |||||
* | Use safe JSContext when possible in interface.rs | marmeladema | 2019-08-09 | 1 | -141/+166 |
| | |||||
* | Update SpiderMonkey bindings for Windows arm64 crash fix. | Josh Matthews | 2019-07-25 | 1 | -5/+7 |
| | |||||
* | Change bindings generation to make Exposed annotation aware of ↵ | sreeise | 2019-07-14 | 1 | -7/+14 |
| | | | | members/partial interfaces | ||||
* | Update to SpiderMonkey 66. | Josh Matthews | 2019-05-10 | 1 | -15/+13 |
| | |||||
* | Update MPL license to https (part 3) | Jan Andre Ikenmeyer | 2018-11-19 | 1 | -1/+1 |
| | |||||
* | Remove useless `use crate_name;` imports. | Simon Sapin | 2018-11-08 | 1 | -1/+0 |
| | | | | A `crate_name::foo` path always works in 2018 | ||||
* | Reorder imports | Pyfisch | 2018-11-06 | 1 | -7/+11 |
| | |||||
* | `cargo fix --edition` | Simon Sapin | 2018-11-06 | 1 | -6/+6 |
| | |||||
* | Format script component | chansuke | 2018-09-19 | 1 | -130/+174 |
| | |||||
* | Upgraded to SM 60 | Alan Jeffrey | 2018-08-20 | 1 | -35/+23 |
| | |||||
* | Adapt Servo for mozjs 0.6 and the changes introduced in servo/rust-mozjs#393 | Marcin Mielniczuk | 2018-03-28 | 1 | -28/+43 |
| | |||||
* | Use specific assertion for DOM binding interface | CYBAI | 2018-01-26 | 1 | -4/+4 |
| | |||||
* | Fix tyvar_behind_raw_pointer warnings | Simon Sapin | 2018-01-10 | 1 | -2/+2 |
| | | | | https://github.com/rust-lang/rust/issues/46906 | ||||
* | Moved pop_current_element_queue() and push_new_element_queue() to ↵ | olmanz | 2017-11-16 | 1 | -9/+0 |
| | | | | htmlconstructor.rs | ||||
* | Moved function html_constructor() from interface.rs to new file ↵ | olmanz | 2017-11-16 | 1 | -309/+3 |
| | | | | htmlconstructor.rs | ||||
* | Fix commonmark Markdown warnings in docs, part 1 | Matt Brubeck | 2017-10-17 | 1 | -1/+1 |
| | | | | | | | | Fixes warnings from rust-lang/rust#44229 when `--enable-commonmark` is passed to rustdoc. This is mostly a global find-and-replace for bare URIs on lines by themselves in doc comments. | ||||
* | Remove usage of unstable features const_ptr_null and const_ptr_null_mut | Simon Sapin | 2017-10-16 | 1 | -2/+2 |
| | |||||
* | 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 | -5/+5 |
| | | | | | | | 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 |
| | |||||
* | order derivable traits lists | Clément DAVID | 2017-08-23 | 1 | -1/+1 |
| | | | | | | Ignoring : - **generated**.rs - python/tidy/servo_tidy_tests/rust_tidy.rs | ||||
* | Track custom element state | Connor Brewster | 2017-08-09 | 1 | -3/+5 |
| | |||||
* | Add construction stack | Connor Brewster | 2017-08-09 | 1 | -18/+37 |
| | |||||
* | Implement CEReactions codegen | Connor Brewster | 2017-07-18 | 1 | -0/+9 |
| | |||||
* | Implement step 5 of HTMLConstructor | Connor Brewster | 2017-06-15 | 1 | -7/+11 |
| | |||||
* | Implement HTMLConstructor | Connor Brewster | 2017-06-15 | 1 | -5/+76 |
| | |||||
* | Add function to get constructor objects by name | Connor Brewster | 2017-06-15 | 1 | -0/+210 |
| | |||||
* | Update js, AGAIN | Anthony Ramine | 2016-11-27 | 1 | -4/+4 |
| | |||||
* | Implement WebIDL namespaces | Anthony Ramine | 2016-09-08 | 1 | -2/+5 |
| | |||||
* | Reorder some stuff in bindings::interface | Anthony Ramine | 2016-09-06 | 1 | -101/+101 |
| | |||||
* | Remove NonNullJSNative | Anthony Ramine | 2016-09-06 | 1 | -5/+1 |
| | |||||
* | Move WebIDL constants machinery to bindings::constant | Anthony Ramine | 2016-09-06 | 1 | -58/+3 |
| | |||||
* | Simplify InterfaceConstructorBehavior | Anthony Ramine | 2016-09-06 | 1 | -32/+30 |
| | |||||
* | Define interface members on the global object directly (fixes #4593) | Anthony Ramine | 2016-08-25 | 1 | -10/+14 |
| | |||||
* | Pass a MutableHandleObject to create_global_object | Anthony Ramine | 2016-08-25 | 1 | -16/+14 |
| | |||||
* | Make create_global_object take a &'static Class | Anthony Ramine | 2016-08-25 | 1 | -1/+1 |
| | |||||
* | Rename utils::create_dom_object to interface::create_global_object | Anthony Ramine | 2016-08-25 | 1 | -14/+57 |
| | |||||
* | Make define_constants unsafe | Anthony Ramine | 2016-08-25 | 1 | -10/+8 |
| | |||||
* | Update SpiderMonkey to m-c bcf4ff0c3eef. | Ms2ger | 2016-07-28 | 1 | -48/+44 |
| | | | | | | This currently breaks Servo on Android, because there are a number of interdependent changes that cannot easily land serially in a way that keeps it working throughout. We expect to fix this in the near future. | ||||
* | Implement the [Exposed] extended attribute on interfaces. | Ms2ger | 2016-07-12 | 1 | -0/+9 |
| | | | | Fixes #2823. | ||||
* | Switch to using the new rooted!/RootedGuard API for rooting. | Eduard Burtescu | 2016-07-04 | 1 | -17/+17 |
| | |||||
* | Implement [Unscopable] (fixes #11583) | Anthony Ramine | 2016-06-07 | 1 | -8/+40 |
| | |||||
* | Implement [Func] | Anthony Ramine | 2016-05-27 | 1 | -4/+4 |
| | |||||
* | Rename receiver to global in bindings::interface | Anthony Ramine | 2016-05-26 | 1 | -8/+8 |
| | |||||
* | Remove some 'static lifetimes from bindings::interface | Anthony Ramine | 2016-05-26 | 1 | -18/+18 |
| | |||||
* | Make define_constants private | Anthony Ramine | 2016-05-26 | 1 | -1/+4 |
| | |||||
* | Remove utils::Prefable in favour of guard::Guard | Anthony Ramine | 2016-05-26 | 1 | -25/+26 |
| | |||||
* | Remove Prefable::terminator 🤖 | Anthony Ramine | 2016-05-26 | 1 | -4/+12 |
| | |||||
* | Simplify how Prefable arrays are passed in bindings::interface | Anthony Ramine | 2016-05-26 | 1 | -18/+16 |
| |