mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-07 03:45:42 +00:00
Bug 210760: "Reload all tabs" doesn't reload all tabs after canceling resending postdata. r=caillon, sr=bzbarsky
This commit is contained in:
parent
b69b2abd98
commit
a6a24fb93b
@ -943,8 +943,13 @@
|
||||
<body>
|
||||
<![CDATA[
|
||||
var l = this.mPanelContainer.childNodes.length;
|
||||
for (var i = 0; i < l; i++)
|
||||
this.mPanelContainer.childNodes[i].reload();
|
||||
for (var i = 0; i < l; i++) {
|
||||
try {
|
||||
this.mPanelContainer.childNodes[i].reload();
|
||||
} catch (e) {
|
||||
// ignore failure to reload so others will be reloaded
|
||||
}
|
||||
}
|
||||
]]>
|
||||
</body>
|
||||
</method>
|
||||
|
Loading…
Reference in New Issue
Block a user