Auto merge of #15620 - servo:jdm-patch-1, r=metajack

Update document constructor spec link.

<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/15620)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2017-02-17 17:02:14 -08:00 committed by GitHub
commit d9c5384493

View file

@ -2046,7 +2046,7 @@ impl Document {
}
}
// https://dom.spec.whatwg.org/#dom-document
// https://dom.spec.whatwg.org/#dom-document-document
pub fn Constructor(window: &Window) -> Fallible<Root<Document>> {
let doc = window.Document();
let docloader = DocumentLoader::new(&*doc.loader());