diff options
author | Nazım Can Altınova <canaltinova@gmail.com> | 2016-07-12 23:29:22 +0300 |
---|---|---|
committer | Nazım Can Altınova <canaltinova@gmail.com> | 2016-07-14 21:35:39 +0300 |
commit | d6c1f7b5e3909d9b11544dae4b4c7d0793fef5f7 (patch) | |
tree | bc74b622691848fc5754a97eb6d1ae4819d9aff9 /components/script/dom/xmldocument.rs | |
parent | 9e010a8aec7f99fd15bf6334f84c39a3229d115f (diff) | |
download | servo-d6c1f7b5e3909d9b11544dae4b4c7d0793fef5f7.tar.gz servo-d6c1f7b5e3909d9b11544dae4b4c7d0793fef5f7.zip |
Implement Document.referrer
Diffstat (limited to 'components/script/dom/xmldocument.rs')
-rw-r--r-- | components/script/dom/xmldocument.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/script/dom/xmldocument.rs b/components/script/dom/xmldocument.rs index b291c912089..52ebce5f55c 100644 --- a/components/script/dom/xmldocument.rs +++ b/components/script/dom/xmldocument.rs @@ -41,7 +41,8 @@ impl XMLDocument { content_type, last_modified, source, - doc_loader), + doc_loader, + None), } } |