Safari screenshots for any Url
Since I've had some problems with Safari compatibility recently, this gets stored in the stash. It wouldn't have helped me, but it's nice to have anyway.
And whatever you do, don't create <img> elements using the DOM constructor:
var blah = new Image();or you'll hit some cryptic Safari errors (DOM-something 8-something error-something, gee); just use:var blah = document.createElement("img");instead.