aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/testbindingproxy.rs
Commit message (Collapse)AuthorAgeFilesLines
* Update MPL license to https (part 3)Jan Andre Ikenmeyer2018-11-191-1/+1
|
* `cargo fix --edition`Simon Sapin2018-11-061-3/+3
|
* Format script componentchansuke2018-09-191-9/+22
|
* removed instances of -> () in existing codelucantrop2017-03-131-6/+6
|
* Make #[dom_struct] a proc_macro attributeAnthony Ramine2017-02-241-1/+1
|
* Use Option<T> to return from gettersAnthony Ramine2016-08-301-2/+2
| | | | | This removes the cumbersome &mut bool argument and offers overall a more readable code.
* Move DOMString back to scriptAnthony Ramine2016-05-241-1/+1
| | | | This entirely removes the 'non-geckolib' feature of the util crate.
* Use DOMString::new() somewhat consistently.Ms2ger2015-11-041-5/+5
|
* more refactoringrohan.prinja2015-10-301-1/+1
|
* Remove deprecated 'creator' WebIDL attributeCorey Farwell2015-09-211-2/+0
| | | | According to @Ms2ger, the 'creator' attribute was merged into 'setter'
* Make test-tidy check that braces have spaces before or after themwilmoz2015-08-311-7/+7
|
* Make the traits for the IDL interfaces take &selfAnthony Ramine2015-08-271-16/+16
|
* make dom_struct derive HeapSizeOf,João Oliveira2015-08-271-1/+0
| | | | closes #7357
* Initial implementation of ownPropertyKeys proxy handlerCorey Farwell2015-08-201-1/+2
| | | | | | | | | | | Generates `SupportedPropertyNames` on DOM structs that should implement it. Most of them are unimplemented now (which can be implemented in later PRs), with the exception of `HTMLCollection`. Also added a couple relevant WPT tests. Closes #6390 Closes #2215
* Measure heap memory usage for more types. Fixes #6951Bogdan Cuza2015-08-131-0/+1
|
* Add spec linksBogdan Cuza2015-07-281-0/+3
|
* Fix indentation in testbindingproxy.rsMichael Wu2015-06-251-22/+22
|
* Upgrade to SM 39Michael Wu2015-06-191-2/+1
|
* added TestBindingProxy.webidl and testbindingproxy.rs filesFrancesc Bautista2015-06-091-0/+31
added testbindingproxy to dom/mod.rs and fixed unused variable warning of testingbindingproxy.rs removed useless GlobalField, removed brackets use statements with only 1 element and changed the description of TestBindingProxy.webidl renamed reflector to reflector_ and removed unused import in testbinding.rs