aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/htmlserializer.rs
Commit message (Collapse)AuthorAgeFilesLines
* Rust upgradesLars Bergstrom2014-03-181-2/+2
|
* Add empty text check for first child of pre in innerHTML.(fixes #1743)lpy2014-02-261-1/+1
|
* Remove DocumentTypeId.Ms2ger2014-02-241-1/+1
|
* Implement JSManaged for DOM objects.Josh Matthews2014-02-241-74/+76
|
* Change Text, Comment and ProcessingInstructions parent name from element to ↵Adam Sinnett2014-02-151-1/+1
| | | | | | | | 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
* Implement ProcessingInstruction DOM interfaceBruno de Oliveira Abinader2014-02-061-1/+12
| | | | | | | Spec: http://dom.spec.whatwg.org/#interface-processinginstruction Closes #1619.
* Move script::dom::namespace into util, in order to use it from style later.Simon Sapin2014-01-251-1/+1
|
* Implement innerHTML getter for HTML documentsJames Graham2014-01-141-0/+135
XML case is not yet implemented.