fx-compat: nsIWebNavigation::loadURI() signature change
This commit is contained in:
parent
b6f5d7183f
commit
1bb99a6bc8
1 changed files with 8 additions and 2 deletions
|
@ -790,8 +790,14 @@
|
||||||
|
|
||||||
this._iframe.addEventListener("DOMContentLoaded", listener, false);
|
this._iframe.addEventListener("DOMContentLoaded", listener, false);
|
||||||
|
|
||||||
this._iframe.webNavigation.loadURI(uri.spec,
|
let loadURIOptions = {
|
||||||
Components.interfaces.nsIWebNavigation.LOAD_FLAGS_BYPASS_HISTORY, null, null, null);
|
triggeringPrincipal: null,
|
||||||
|
csp: null,
|
||||||
|
loadFlags: Components.interfaces.nsIWebNavigation.LOAD_FLAGS_BYPASS_HISTORY,
|
||||||
|
referrerInfo: null,
|
||||||
|
postData: null,
|
||||||
|
};
|
||||||
|
this._iframe.webNavigation.loadURI(uri.spec, loadURIOptions);
|
||||||
]]>
|
]]>
|
||||||
</body>
|
</body>
|
||||||
</method>
|
</method>
|
||||||
|
|
Loading…
Reference in a new issue