diff options
author | Corey Farwell <coreyf@rwell.org> | 2015-05-23 19:49:53 -0400 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2015-05-24 00:01:49 -0400 |
commit | 8e3f4bba85b9b246fb7da8ea0994fb0160578c1b (patch) | |
tree | 2c66c695c97d638df81aeb40ac54ccc6d0cc8cb9 /components/script/dom/domimplementation.rs | |
parent | 7561f7b83f27811683c1e724d75a935573a72813 (diff) | |
download | servo-8e3f4bba85b9b246fb7da8ea0994fb0160578c1b.tar.gz servo-8e3f4bba85b9b246fb7da8ea0994fb0160578c1b.zip |
Reduce max line length from 150 to 120 characters
Part of https://github.com/servo/servo/issues/6041
Diffstat (limited to 'components/script/dom/domimplementation.rs')
-rw-r--r-- | components/script/dom/domimplementation.rs | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/components/script/dom/domimplementation.rs b/components/script/dom/domimplementation.rs index d64ad103aa1..8171db316ac 100644 --- a/components/script/dom/domimplementation.rs +++ b/components/script/dom/domimplementation.rs @@ -129,12 +129,14 @@ impl<'a> DOMImplementationMethods for JSRef<'a, DOMImplementation> { { // Step 4. - let doc_html: Root<Node> = NodeCast::from_temporary(HTMLHtmlElement::new("html".to_owned(), None, doc.r())).root(); + let doc_html: Root<Node> = NodeCast::from_temporary( + HTMLHtmlElement::new("html".to_owned(), None, doc.r())).root(); assert!(doc_node.AppendChild(doc_html.r()).is_ok()); { // Step 5. - let doc_head: Root<Node> = NodeCast::from_temporary(HTMLHeadElement::new("head".to_owned(), None, doc.r())).root(); + let doc_head: Root<Node> = NodeCast::from_temporary( + HTMLHeadElement::new("head".to_owned(), None, doc.r())).root(); assert!(doc_html.r().AppendChild(doc_head.r()).is_ok()); // Step 6. @@ -142,7 +144,8 @@ impl<'a> DOMImplementationMethods for JSRef<'a, DOMImplementation> { None => (), Some(title_str) => { // Step 6.1. - let doc_title: Root<Node> = NodeCast::from_temporary(HTMLTitleElement::new("title".to_owned(), None, doc.r())).root(); + let doc_title: Root<Node> = NodeCast::from_temporary( + HTMLTitleElement::new("title".to_owned(), None, doc.r())).root(); assert!(doc_head.r().AppendChild(doc_title.r()).is_ok()); // Step 6.2. |