aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/create.rs
Commit message (Collapse)AuthorAgeFilesLines
* Import the util crate as util rather than servo_util.Ms2ger2015-01-291-1/+1
| | | | | | | | This used to conflict with the util crate from the standard library, which has long since been removed. The import in layout has not been changed because of a conflict with the util mod there.
* Update rustc to 00b112c45a604fa6f4b59af2a40c9deeadfdb7c6/rustc-1.0.0-dev.Josh Matthews2015-01-281-3/+7
|
* Move to to_owned rather than into_string.Ms2ger2015-01-201-2/+4
| | | | into_string has been removed from Rust.
* auto merge of #4173 : Manishearth/servo/a-more-dom-struct, r=kmcallisterbors-servo2014-12-271-1/+0
|\ | | | | | | | | | | Now `#[dom_struct]` also generates Reflectable impls, and there's another lint to ensure that a DOM struct only contains one bare DOM field (as the first field) or a Reflector. A lot of this was generated by sed -- each autogenerated change has its own commit for easy review; these will be squashed later.
| * Remove extra spacesManish Goregaokar2014-12-271-1/+0
| | | | | | | | Command: `find . -maxdepth 1 -type f -print0 | xargs -0 sed -z -i "s/}\\n\\n\\n/}\\n\\n/"`
* | script: to_string() -> into_string()Manish Goregaokar2014-12-271-2/+2
|/
* script: Remove glob imports added in #4405Tetsuharu OHZEKI2014-12-191-7/+7
|
* Update rustc to revision 3dcd2157403163789aaf21a9ab3c4d30a7c6494d.Ms2ger2014-12-171-1/+1
|
* Pass the prefix to Element::new in create_element.Ms2ger2014-11-051-1/+1
|
* Move build_element_from_tag out of the HTML parser.Ms2ger2014-10-301-0/+225
This function is not particular to the parser, so should live in the DOM.