aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/script_task.rs
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2015-03-18 17:12:49 -0600
committerbors-servo <metajack+bors@gmail.com>2015-03-18 17:12:49 -0600
commitb2fb06d6e25d6728d6000c283ed1dab1e8bfabb1 (patch)
tree491e0ba1414475d09c9700e5bf0c918808fa96b6 /components/script/script_task.rs
parent2346c9b94055f84a536808e40ad0b596ee21fbf4 (diff)
parent99286e4b4fe267d123fbdd5484612840300ab30e (diff)
downloadservo-b2fb06d6e25d6728d6000c283ed1dab1e8bfabb1.tar.gz
servo-b2fb06d6e25d6728d6000c283ed1dab1e8bfabb1.zip
auto merge of #4888 : ChrisParis/servo/innerhtml, r=jdm
This addresses #849. This PR cannot land until the corresponding PR (https://github.com/servo/html5ever/pull/91) in html5ever lands. I've done some simple testing of this code, but I don't consider it thorougly tested yet. I wanted to start getting feedback about the overall design before I spend more time polishing the details, and testing.
Diffstat (limited to 'components/script/script_task.rs')
-rw-r--r--components/script/script_task.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/script_task.rs b/components/script/script_task.rs
index 238763f3035..ce4dd123d00 100644
--- a/components/script/script_task.rs
+++ b/components/script/script_task.rs
@@ -1013,7 +1013,7 @@ impl ScriptTask {
HTMLInput::InputUrl(response)
};
- parse_html(document.r(), parse_input, &final_url);
+ parse_html(document.r(), parse_input, &final_url, None);
document.r().set_ready_state(DocumentReadyState::Interactive);
self.compositor.borrow_mut().set_ready_state(incomplete.pipeline_id, PerformingLayout);