diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2017-01-25 14:05:01 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2017-01-27 12:12:21 +0100 |
commit | d8238646a018579bfeec260abaadf518093c098f (patch) | |
tree | 8be942195aa8a85f227476fa5174ebe43dd24ed0 /components/script/script_thread.rs | |
parent | 90839305ae46d5be6c729304fd224b3d68681506 (diff) | |
download | servo-d8238646a018579bfeec260abaadf518093c098f.tar.gz servo-d8238646a018579bfeec260abaadf518093c098f.zip |
Kill ServoParser::pipeline
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r-- | components/script/script_thread.rs | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index 57cdd7044c4..20e4d7041da 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -1849,17 +1849,9 @@ impl ScriptThread { document.set_https_state(metadata.https_state); if is_html_document == IsHTMLDocument::NonHTMLDocument { - ServoParser::parse_xml_document( - &document, - parse_input, - final_url, - Some(incomplete.pipeline_id)); + ServoParser::parse_xml_document(&document, parse_input, final_url); } else { - ServoParser::parse_html_document( - &document, - parse_input, - final_url, - Some(incomplete.pipeline_id)); + ServoParser::parse_html_document(&document, parse_input, final_url); } if incomplete.is_frozen { |