Bug 864152 - Fix for intermittent browser_webconsole_network_panel.js | uncaught exception - TypeError: imageNode or elem is null at resource:///modules/devtools/webconsole/network-panel.js; r=me

This commit is contained in:
Mihai Sucan 2013-09-10 14:08:53 +03:00
parent 0172aabc7e
commit ba45bd248b

View File

@ -675,9 +675,7 @@ NetworkPanel.prototype =
*/
update: function NP_update()
{
// After the iframe's contentWindow is ready, the document object is set.
// If the document object is not available yet nothing needs to be updated.
if (!this.document || !this.document.getElementById("headUrl")) {
if (!this.document || this.document.readyState != "complete") {
return;
}