Status of the Internet Explorer Platform: lists all new/fairly new HTML5/CSS/JS techniques that browser vendors are implementing, and Microsofts stance on / progress with it. IE Platform Status → Related: don’t forget about caniuse.com 😉
Tag Archives: browsers
RemoteDebug, an initiative to unify remote debugging across browsers
SlimerJS — A scriptable browser for Web developers
SlimerJS allows you to interact with a web page through an external JS script. It is useful to do functional tests, page automation, network monitoring, screen capture, etc. webpage .open(url) // loads a page .then(function(){ // executed after loading // store a screenshot of the page webpage.viewportSize = { width:650, height:320 }; webpage.render(‘page.png’, {onlyViewport:true}); // …
Continue reading “SlimerJS — A scriptable browser for Web developers”