Bug 902105 - loadURI should rethrow inside its catch clause (r=gavin)

This commit is contained in:
Bill McCloskey 2013-08-07 10:52:06 -07:00
parent 8e6923c02a
commit 927a0c16e4

View File

@ -2645,6 +2645,7 @@
} catch (e) {
let url = this.mCurrentBrowser.currentURI.spec;
this._updateBrowserRemoteness(this.mCurrentBrowser, this._shouldBrowserBeRemote(url));
throw e;
}
#endif
]]>
@ -2669,6 +2670,7 @@
} catch (e) {
let url = this.mCurrentBrowser.currentURI.spec;
this._updateBrowserRemoteness(this.mCurrentBrowser, this._shouldBrowserBeRemote(url));
throw e;
}
#endif
]]>