aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/processinginstruction.rs
Commit message (Collapse)AuthorAgeFilesLines
* s/Unrooted/Temporary/gJosh Matthews2014-05-031-2/+2
|
* Move WebIDL methods to traits implemented by JSRef types.Josh Matthews2014-05-031-2/+7
|
* Implement safe rooting strategy via Unrooted, Root, JSRef, and JS.Josh Matthews2014-05-031-2/+2
|
* Turn on GC all the time. Fix rooting errors during parsing and storing ↵Josh Matthews2014-05-031-3/+3
| | | | 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 JSManaged for DOM objects.Josh Matthews2014-02-241-6/+19
|
* Change Text, Comment and ProcessingInstructions parent name from element to ↵Adam Sinnett2014-02-151-3/+2
| | | | | | | | characterdata All other node's parent type names reflect the actual type of the parent. This change extends that convention to the indicated nodes. closes #1594
* Move DOMString into servo_util.Ms2ger2014-02-141-1/+1
|
* Implement ProcessingInstruction DOM interfaceBruno de Oliveira Abinader2014-02-061-0/+36
Spec: http://dom.spec.whatwg.org/#interface-processinginstruction Closes #1619.