aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/domparser.rs
Commit message (Collapse)AuthorAgeFilesLines
* Replace most ~"string"s with "string".to_owned().Ms2ger2014-05-041-2/+2
|
* Address review comments.Josh Matthews2014-05-031-1/+2
|
* Address review comments.Josh Matthews2014-05-031-3/+3
|
* Remove all root collections.Josh Matthews2014-05-031-3/+2
|
* s/Unrooted/Temporary/gJosh Matthews2014-05-031-5/+5
|
* Move WebIDL methods to traits implemented by JSRef types.Josh Matthews2014-05-031-4/+10
|
* Implement safe rooting strategy via Unrooted, Root, JSRef, and JS.Josh Matthews2014-05-031-4/+4
|
* Turn on GC all the time. Fix rooting errors during parsing and storing ↵Josh Matthews2014-05-031-6/+8
| | | | timers. Fix borrow errors during tracing.
* Remove the 'pub use self::BindingDeclarations::*;' export.Tetsuharu OHZEKI2014-05-011-2/+2
|
* 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.
* Pass &JS<Window> to reflect_dom_object.Ms2ger2014-03-041-1/+1
|
* DOMParser should pass the correct contentType (fixes #1741)Saurabh Anand2014-03-011-3/+3
|
* Move Error, Fallible, ErrorResult out of utils.rs (fixes #1749)Saurabh Anand2014-02-281-2/+1
|
* Remove DocumentTypeId.Ms2ger2014-02-241-2/+2
|
* Remove document::DocumentType (fixes #1730).Ms2ger2014-02-241-2/+2
|
* Remove HTMLDocument.Ms2ger2014-02-241-4/+2
|
* Implement JSManaged for DOM objects.Josh Matthews2014-02-241-9/+12
|
* Move DOMString into servo_util.Ms2ger2014-02-141-1/+3
|
* 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-2/+2
| | | | | | | Spec: http://dom.spec.whatwg.org/#dom-document-contenttype This is a subtask for #1428, #1510 and #1526.
* Stop passing DOMStrings via borrowed pointer. (#1201)Tetsuharu OHZEKI2013-11-141-1/+1
|
* Remove Reflectable::GetParentObject.Ms2ger2013-11-061-6/+0
|
* Remove Reflectable::wrap_object_shared.Ms2ger2013-11-061-5/+1
|
* Rewrite Document creation and reflection.Ms2ger2013-11-051-2/+1
|
* Make Document a Node.Josh Matthews2013-10-311-17/+6
|
* Revert "Make Document a Node." for breaking Acid1Patrick Walton2013-10-241-6/+18
| | | | | | | | This reverts commit 4e47d59165d186d0938fe9ffd726b2c1b83d50f4. Conflicts: src/components/script/dom/domparser.rs
* Cleanup DOMParser binding.Ms2ger2013-10-241-9/+27
|
* Make Document a Node.Josh Matthews2013-10-241-18/+6
|
* Issue #1071 - Ensure that Documents always have a non-null Window.Ms2ger2013-10-161-2/+2
|
* Implement Window::get_cx() to reduce code repetition.Ms2ger2013-10-131-2/+2
|
* Issue #888 - Node's owner document should never be None.Ms2ger2013-10-101-1/+1
|
* Rename |wrapper| to |reflector_| in Reflectable implementations for DOM objects.Bobby Holley2013-10-091-2/+2
|
* Rename some local variables and shorten some lines.Bobby Holley2013-10-091-2/+1
| | | | This was done manually, and might benefit from a more careful review.
* Rename {get,set}_wrapper to {get,set}_jsobject. v1Bobby Holley2013-10-091-1/+1
|
* Rename get_wrappercache() to reflector(). v1Bobby Holley2013-10-091-1/+1
| | | | I also updated some variable names in the codegen.
* Rename WrapperCache to Reflector.Bobby Holley2013-10-091-3/+3
| | | | | I think the abstraction from the raw JSObject is still probably worthwhile for now.
* Rename CacheableWrapper to Reflectable.Bobby Holley2013-10-091-1/+1
|
* Remove unnecessary mutability.Ms2ger2013-10-061-1/+1
|
* Don't require passing a root element to Document::new (needed for issue #888).Ms2ger2013-10-051-18/+18
|
* Rename the element field of the DOM Node hierarchyLuis de Bethencourt2013-09-191-1/+1
| | | | | | Renamed htmlelement, and element Fixes #924
* bindings: Return errors in Result rather than setting an out parameterKeegan McAllister2013-09-181-8/+7
| | | | Fixes #909.
* Make Window store an @Page instead of a *Page and remove a bunch of unsafe code.Josh Matthews2013-09-121-1/+1
|
* Remove many long ugly lists of imports of HTML element types. They can now ↵Josh Matthews2013-08-271-1/+2
| | | | be obtained via dom::types::*, which is autogenerated.
* Generate bindings for HTMLHeadElement.Josh Matthews2013-08-051-2/+3
|
* Generate bindings for Node, CharacterData, Text, Element, and HTMLElement. ↵Josh Matthews2013-08-051-1/+1
| | | | Hook up text nodes to use the new bindings.
* Generate HTMLDocument bindings. Introduce invariant into generated bindings ↵Josh Matthews2013-07-301-5/+19
| | | | that associated DOM classes are named the same as their interfaces, so Event and Event_ need to be swapped.
* fix borrow check failures by reverting to storing *mut Page in windowTim Kuehn2013-07-291-1/+1
|
* switched window.page from *mut Page to @mut PageTim Kuehn2013-07-291-1/+1
|
* structural changes to support IframesTim Kuehn2013-07-291-3/+3
|
* Separate the DOM and layout into separate crates.Patrick Walton2013-05-281-0/+51