diff --git a/drivers/firefox/content/js/content.js b/drivers/firefox/content/js/content.js index bf38376d4..c92fdfcd9 100644 --- a/drivers/firefox/content/js/content.js +++ b/drivers/firefox/content/js/content.js @@ -7,7 +7,7 @@ if ( content.document.contentType != 'text/html' ) return; // HTML - var html = content.document.documentElement.innerHTML + var html = content.document.documentElement.outerHTML if ( html.length > 50000 ) html = html.substring(0, 25000) + html.substring(html.length - 25000, html.length);