| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove deprecated 'creator' WebIDL attribute | Corey Farwell | 2015-09-21 | 1 | -4/+0 |
* | Python 'is' operator should not be used to check value | Corey Farwell | 2015-09-20 | 1 | -3/+3 |
* | Remove parens around Python 'assert' statement | Corey Farwell | 2015-09-20 | 1 | -7/+7 |
* | Introduce [Abstract] to mark non-leaf interfaces | Anthony Ramine | 2015-09-13 | 1 | -1/+1 |
* | Move EventTargetTypeId/NodeTypeId to DOMClass | Michael Wu | 2015-09-12 | 1 | -1/+21 |
* | Link to Servo issue instead of Gecko bug | Corey Farwell | 2015-09-10 | 1 | -1/+1 |
* | Auto merge of #7455 - nox:rm-unused-warnings, r=jdm | bors-servo | 2015-08-30 | 1 | -23/+27 |
|\ |
|
| * | Do not allow unreachable_code in codegen anymore | Anthony Ramine | 2015-08-30 | 1 | -4/+0 |
| * | Do not allow dead_code in codegen anymore | Anthony Ramine | 2015-08-30 | 1 | -1/+0 |
| * | Do not allow unused_parens in codegen anymore | Anthony Ramine | 2015-08-30 | 1 | -4/+3 |
| * | Do not allow unused_mut in codegen anymore | Anthony Ramine | 2015-08-30 | 1 | -7/+8 |
| * | Do not allow unused_unsafe in codegen anymore | Anthony Ramine | 2015-08-30 | 1 | -7/+16 |
* | | Auto merge of #7432 - jdm:dashedprops, r=nox | bors-servo | 2015-08-30 | 1 | -13/+24 |
|\ \
| |/
|/| |
|
| * | Add infrastructure for supporting dashed CSS property names on CSSStyleDeclar... | Josh Matthews | 2015-08-28 | 1 | -13/+24 |
* | | Prefer JSTrue/JSFalse to 1/0 | Corey Farwell | 2015-08-28 | 1 | -9/+9 |
|/ |
|
* | Make the traits for the IDL interfaces take &self | Anthony Ramine | 2015-08-27 | 1 | -1/+1 |
* | Auto merge of #7387 - Yoric:2240-2, r=Ms2ger | bors-servo | 2015-08-27 | 1 | -22/+29 |
|\ |
|
| * | Fixes #2240 - NamedGetter and NamedSetter do not assume that the argument is ... | David Rajchenbach-Teller | 2015-08-26 | 1 | -22/+29 |
* | | Auto merge of #7395 - Manishearth:doc-inherit, r=nox | bors-servo | 2015-08-26 | 1 | -3/+11 |
|\ \ |
|
| * | | Document InheritTypes | Manish Goregaokar | 2015-08-27 | 1 | -3/+11 |
* | | | Auto merge of #7397 - Manishearth:doublepointer-meet-fire, r=nox | bors-servo | 2015-08-26 | 1 | -13/+0 |
|\| |
| |/
|/| |
|
| * | remove to_borrowed_ref, fix Activatable | Manish Goregaokar | 2015-08-27 | 1 | -8/+0 |
| * | Remove doublepointer in VirtualMethods, and from_borrowed_ref | Manish Goregaokar | 2015-08-27 | 1 | -5/+0 |
* | | Don't use `is` operatory to compare Python strings | Corey Farwell | 2015-08-22 | 1 | -2/+2 |
|/ |
|
* | Utilize Python context managers for opening/closing files | Corey Farwell | 2015-08-21 | 1 | -6/+4 |
* | Initial implementation of ownPropertyKeys proxy handler | Corey Farwell | 2015-08-20 | 1 | -3/+68 |
* | Auto merge of #7230 - nox:required-dictionary-member, r=Ms2ger | bors-servo | 2015-08-18 | 1 | -8/+13 |
|\ |
|
| * | Support required dictionary members (fixes #7216) | Anthony Ramine | 2015-08-16 | 1 | -2/+6 |
| * | Update WebIDL parser | Anthony Ramine | 2015-08-16 | 1 | -6/+7 |
* | | Auto merge of #7236 - nox:dictionary-failure-code, r=Ms2ger | bors-servo | 2015-08-16 | 1 | -1/+0 |
|\ \
| |/
|/| |
|
| * | Fix dictionary member conversion failure (fixes #7231) | Anthony Ramine | 2015-08-16 | 1 | -1/+0 |
* | | Support default values for restricted float members (fixes #7217) | Anthony Ramine | 2015-08-15 | 1 | -3/+5 |
|/ |
|
* | Auto merge of #7199 - frewsxcv:codegen-if-let, r=Manishearth | bors-servo | 2015-08-13 | 1 | -8/+4 |
|\ |
|
| * | Prefer if..let over if..is_some..unwrap in codegen | Corey Farwell | 2015-08-13 | 1 | -8/+4 |
* | | Avoid marking codegen method bodies as unsafe twice | Corey Farwell | 2015-08-13 | 1 | -1/+3 |
|/ |
|
* | Remove dead Python code in binding generating code | Corey Farwell | 2015-08-05 | 1 | -221/+4 |
* | Start reporting memory usage for Window and all nodes in all DOM trees for fr... | Josh Matthews | 2015-08-03 | 1 | -1/+1 |
* | Remove an obsolete comment I missed in #6804. | Ms2ger | 2015-07-30 | 1 | -2/+0 |
* | Remove unrooted_must_root annotation from unions (fixes #2661). | Ms2ger | 2015-07-28 | 1 | -1/+0 |
* | Add aarch64-unknown-linux-gnu support | Akos Kiss | 2015-07-23 | 1 | -4/+4 |
* | Add Clamp and EnforceRange support for webidl arguments. | snf | 2015-07-22 | 1 | -6/+17 |
* | Auto merge of #6592 - frewsxcv:notimplementederror, r=Ms2ger | bors-servo | 2015-07-21 | 1 | -5/+4 |
|\ |
|
| * | Use NotImplementedError for Python base class methods | Corey Farwell | 2015-07-11 | 1 | -5/+4 |
* | | Move away from the repeat().take().collect() pattern. | Ms2ger | 2015-07-14 | 1 | -2/+1 |
|/ |
|
* | Remove tidy blacklist for 'script/dom/bindings/*' | Corey Farwell | 2015-07-09 | 1 | -229/+422 |
* | Remove *Cast::from_actual. | Ms2ger | 2015-07-04 | 1 | -6/+1 |
* | Refactor #[jstraceable] to #[derive(JSTraceable)] | David Winslow | 2015-07-01 | 1 | -3/+2 |
* | CGImports must consider special operations to generate required 'use' items | Mukilan Thiyagarajan | 2015-06-27 | 1 | -0/+3 |
* | Use Rc::get_mut rather than deprecated rc::get_mut. | Ms2ger | 2015-06-26 | 1 | -1/+2 |
* | Use Box::into_raw rather than boxed::into_raw. | Ms2ger | 2015-06-25 | 1 | -2/+1 |