aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/htmlserializer.rs
Commit message (Expand)AuthorAgeFilesLines
* Cargoify servoJack Moffitt2014-09-081-171/+0
* Make Attr::local_name an Atom.Ms2ger2014-08-161-5/+7
* Convert element name to be stored as atom instead of string.Glenn Watson2014-07-161-1/+1
* Remove some into_owned calls.Ms2ger2014-06-281-1/+1
* Upgrade to latest Rust.Manish Goregaokar2014-06-271-2/+2
* Use internal mutability for Attr::value.Ms2ger2014-06-221-1/+1
* auto merge of #2616 : Ms2ger/servo/attrvalue, r=jdmbors-servo2014-06-131-1/+1
|\
| * Make Attr::value private.Ms2ger2014-06-081-1/+1
* | Use internal mutability for CharacterData::data.Ms2ger2014-06-111-6/+6
|/
* Upgrade Rust.Jack Moffitt2014-06-051-24/+24
* Use Cell/RefCell for interior mutability of Element.Tetsuharu OHZEKI2014-05-301-1/+1
* Rewrite escape() in htmlserializer to push onto a StrBuf.Ms2ger2014-05-271-11/+12
* Use StrBuf more efficiently in htmlserializer.Ms2ger2014-05-271-60/+74
* Update Rust.Ms2ger2014-05-221-4/+6
* Replace most ~"string"s with "string".to_owned().Ms2ger2014-05-041-11/+11
* Replace all ~"" with "".to_owned().Ms2ger2014-05-031-2/+2
* Address review comments.Josh Matthews2014-05-031-25/+25
* Remove all root collections.Josh Matthews2014-05-031-6/+4
* Implement safe rooting strategy via Unrooted, Root, JSRef, and JS.Josh Matthews2014-05-031-24/+22
* Turn on GC all the time. Fix rooting errors during parsing and storing timers...Josh Matthews2014-05-031-13/+21
* Make open_elements in htmlserializer.rs use Vec.Ms2ger2014-04-281-2/+2
* Implement Element.localName.(fixes #2188)lpy2014-04-231-4/+4
* Split TCast::to into TCast::to_unchecked and TCast::to.Tetsuharu OHZEKI2014-03-201-7/+7
* 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 c...Adam Sinnett2014-02-151-1/+1
* Implement ProcessingInstruction DOM interfaceBruno de Oliveira Abinader2014-02-061-1/+12
* 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