mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 773556 - Fix reader mode typos. r=mfinkle
This commit is contained in:
parent
a2cdf0a2c1
commit
596b1b0873
@ -1066,7 +1066,7 @@ Readability.prototype = {
|
||||
this._appendNextPage(nextPageLink);
|
||||
}
|
||||
});
|
||||
}).bind(this).(nextPageLink, articlePage);
|
||||
}).bind(this)(nextPageLink, articlePage);
|
||||
},
|
||||
|
||||
/**
|
||||
|
@ -6471,7 +6471,7 @@ let Reader = {
|
||||
});
|
||||
},
|
||||
|
||||
_dowloadDocument: function Reader_downloadDocument(url, callback) {
|
||||
_downloadDocument: function Reader_downloadDocument(url, callback) {
|
||||
// We want to parse those arbitrary pages safely, outside the privileged
|
||||
// context of chrome. We create a hidden browser element to fetch the
|
||||
// loaded page's document object then discard the browser element.
|
||||
@ -6516,7 +6516,7 @@ let Reader = {
|
||||
try {
|
||||
this.log("Needs to fetch page, creating request: " + url);
|
||||
|
||||
request.browser = this._dowloadDocument(url, function(doc) {
|
||||
request.browser = this._downloadDocument(url, function(doc) {
|
||||
this.log("Finished loading page: " + doc);
|
||||
|
||||
// Delete reference to the browser element as we're
|
||||
|
Loading…
Reference in New Issue
Block a user