Examples of stuff I'd like to do:
- process javascript and produce new DOM
- be able to provide information about DOM objects as rendered (e.g. position, size)
Edit: My main concern is if ...
Is it possible to measure the time Firefox needs for rendering a page and evaluating all the JavaScript and CSS sources? I tried it with Firebug, YSlow and Google Page Speed ...
What's the DOM equivalent of the image-rendering CSS property in Firefox? i.e. is there a way to set it aside from doing element.style.cssText = "image-rendering: -moz-crisp-edges;"?
Note: browser compatibility is not an ...
Is it possible to block the downloading of external scripts/stylesheets with a bit of javascript? For example, putting a tiny block of javascript at the very top of <head> to do ...
I need to get the size taken up by the elements on an HTML page.
Not the client width of the browser.
As I can't enforce the html to have everything inside a ...