greatsuspender / thegreatsuspender

A chrome extension for suspending all tabs to free up memory
https://chrome.google.com/webstore/detail/the-great-suspender/klbibkeccnjlkjkiokjodocebajanakg/
GNU General Public License v2.0
5.04k stars 905 forks source link

Issues with SVG #942

Open brennanyoung opened 5 years ago

brennanyoung commented 5 years ago

Loading an SVG (without HTML) I'm getting this error in the console:

Error in event handler: TypeError: Cannot read property 'scrollTop' of null

(Yes of course, document.body.scrollTop is meaningless because SVG has no body element. There's a viewbox, though.)

This error occurs in http, but not with file://

Perhaps... don't always assume HTML? Check the MIME type or something? SVG usage is growing, and there are dozens of other MIME types other than text/html that render directly in the browser. I assume there will be a similar error in these cases.

brennanyoung commented 4 years ago

bump