aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/domimplementation.rs
Commit message (Collapse)AuthorAgeFilesLines
* Cargoify servoJack Moffitt2014-09-081-172/+0
|
* Call the generated rather than the hand-written traits (fixes #2936).Ms2ger2014-07-271-9/+5
|
* Introduce abstractions for global scopes.Ms2ger2014-07-151-1/+2
| | | | Part of #2811.
* Put some 'use' statements in alphabetical order.Ms2ger2014-07-151-1/+1
|
* Fix DOMImplementation should be linked to the DocumentJulian Viereck2014-07-131-11/+13
| | | | This fixes issues 2230.
* Make some DOM members private.Ms2ger2014-06-281-2/+2
| | | | | I have not reviewed if this is the complete set of members that can be made private.
* Remove needless mutabilities from script crate.Tetsuharu OHZEKI2014-06-221-1/+1
|
* auto merge of #2649 : ebalint/servo/2580_JS_T_unrooted_replace, r=jdmbors-servo2014-06-131-1/+1
|\ | | | | | | | | removed .clone() calls modified from_rooted method parameter: T to &T
| * Replace uses of JS<T>.unrooted() with JS::from_rooted #2580Edit Balint2014-06-131-1/+1
| |
* | Remove Reflectable::mut_reflector.Ms2ger2014-06-131-4/+0
|/
* Upgrade Rust.Jack Moffitt2014-06-051-6/+6
|
* Rename BindingDeclarations to Bindings.Ms2ger2014-06-021-1/+1
|
* Remove needless '&mut self' from node.rs.Tetsuharu OHZEKI2014-06-021-22/+27
|
* Update Rust.Ms2ger2014-05-221-1/+1
|
* Rename from_unrooted to from_temporary. Fixes #2332.Glenn Watson2014-05-071-3/+3
|
* Fix some unused_mut/unused_result warningsManish Goregaokar2014-05-051-1/+1
|
* Replace most ~"string"s with "string".to_owned().Ms2ger2014-05-041-5/+5
|
* Address review comments.Josh Matthews2014-05-031-5/+5
|
* Remove all root collections.Josh Matthews2014-05-031-17/+14
|
* s/Unrooted/Temporary/gJosh Matthews2014-05-031-10/+10
|
* Remove abstract_self.Josh Matthews2014-05-031-10/+10
|
* Move WebIDL methods to traits implemented by JSRef types.Josh Matthews2014-05-031-8/+15
|
* Remove JS::get/get_mut to enforce sound rooting practices.Josh Matthews2014-05-031-3/+3
|
* Implement safe rooting strategy via Unrooted, Root, JSRef, and JS.Josh Matthews2014-05-031-45/+41
|
* Turn on GC all the time. Fix rooting errors during parsing and storing ↵Josh Matthews2014-05-031-23/+45
| | | | timers. Fix borrow errors during tracing.
* Remove the 'pub use self::BindingDeclarations::*;' export.Tetsuharu OHZEKI2014-05-011-1/+1
|
* This batch of changes upgrades Servo to work with the Rust upgrade as ofLars Bergstrom2014-04-271-2/+2
| | | | | | April 10, 2014. The main changes are to privacy, to work around the issues with incorrect bounds on the libstd `Arc<Mutex<T>>`, and the various API changes strewn throughout the libraries.
* Implement DOMImplementation::createDocumentBruno de Oliveira Abinader2014-04-211-1/+37
| | | | | | | Spec: http://dom.spec.whatwg.org/#dom-domimplementation-createdocument Closes #1509.
* Warning police.Josh Matthews2014-03-181-6/+6
|
* Pass &JS<Window> to reflect_dom_object.Ms2ger2014-03-041-1/+1
|
* Move Error, Fallible, ErrorResult out of utils.rs (fixes #1749)Saurabh Anand2014-02-281-1/+1
|
* Remove DocumentTypeId.Ms2ger2014-02-241-4/+3
|
* Remove document::DocumentType (fixes #1730).Ms2ger2014-02-241-4/+2
|
* Remove HTMLDocument.Ms2ger2014-02-241-3/+2
|
* Implement JSManaged for DOM objects.Josh Matthews2014-02-241-28/+31
|
* Move DOMString into servo_util.Ms2ger2014-02-141-1/+2
|
* Implement document.URL & document.documentURIBruno de Oliveira Abinader2014-01-301-1/+1
| | | | | | | | Specs: http://dom.spec.whatwg.org/#dom-document-url http://dom.spec.whatwg.org/#dom-document-documenturi This is a sub-task for #1428.
* Basic support for Document::contentTypeBruno de Oliveira Abinader2014-01-211-4/+1
| | | | | | | Spec: http://dom.spec.whatwg.org/#dom-document-contenttype This is a subtask for #1428, #1510 and #1526.
* Implement DOMImplementation::createHTMLDocumentBruno de Oliveira Abinader2014-01-201-1/+63
| | | | | | | Spec: http://dom.spec.whatwg.org/#dom-domimplementation-createhtmldocument Closes #1510.
* DocumentType does not need to know about quirks modeBruno de Oliveira Abinader2014-01-151-3/+1
| | | | TSIA. Closes #1498.
* Implement DOMImplementation::createDocumentTypeBruno de Oliveira Abinader2014-01-151-1/+22
| | | | | | | Implementation according to spec: http://dom.spec.whatwg.org/#dom-domimplementation-createdocumenttype Closes #1489.
* Add DOMImplementation skeletonBruno de Oliveira Abinader2014-01-141-0/+36
Creates a DOMImplementation struct corresponding to DOMImplementation WebIDL. Also implements a getter for Document::implementation. Closes #1486.