diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-02-19 12:49:35 +0530 |
---|---|---|
committer | bors-servo <lbergstrom+bors@mozilla.com> | 2016-02-19 12:49:35 +0530 |
commit | ee158cc65f117f8fa10c4b706ff4009c579c7775 (patch) | |
tree | f5850266b77be37caa759bf1e92b2c628c58aa6c /components/script/dom/domimplementation.rs | |
parent | ddf5e9dba56fe593a657c9b7fa4827604906b698 (diff) | |
parent | 152cec69eb20f52217aa1905255e4d439a7119b6 (diff) | |
download | servo-ee158cc65f117f8fa10c4b706ff4009c579c7775.tar.gz servo-ee158cc65f117f8fa10c4b706ff4009c579c7775.zip |
Auto merge of #9603 - Ms2ger:document-bc, r=jdm
Store a pointer to the browsing context in the Document.
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.svg" height="40" alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9603)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/domimplementation.rs')
-rw-r--r-- | components/script/dom/domimplementation.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/domimplementation.rs b/components/script/dom/domimplementation.rs index d994b111b69..01cd8acb7df 100644 --- a/components/script/dom/domimplementation.rs +++ b/components/script/dom/domimplementation.rs @@ -116,6 +116,7 @@ impl DOMImplementationMethods for DOMImplementation { // Step 1-2. let doc = Document::new(win, None, + None, IsHTMLDocument::HTMLDocument, None, None, |