diff --git a/readme.md b/readme.md
index 9c83797..d7df7ad 100644
--- a/readme.md
+++ b/readme.md
@@ -27,25 +27,16 @@ Examples using both the minified version and the version in the `src` directory
## Browser Compatibility
-Since Pannellum is built with recent web standards, it requires a modern browser to function.
+Since Pannellum is built with web standards, it requires a modern browser to function.
#### Full support (with appropriate graphics drivers):
-* Firefox 10+
-* Chrome 15+
+* Firefox 23+
+* Chrome 24+
* Safari 8+
* Internet Explorer 11+
* Edge
-#### Almost full support (no full screen):
-* Firefox 4+
-* Chrome 9+
-
-#### Partial support (WebGL support must first be enabled in preferences)
-
-* Safari 5.1+
-
-#### No support:
-Internet Explorer 10 and previous
+The support list is based on feature support. As only recent browsers are tested, there may be regressions in older browsers.
#### Not officially supported:
diff --git a/src/js/RequestAnimationFrame.js b/src/js/RequestAnimationFrame.js
deleted file mode 100644
index f07d729..0000000
--- a/src/js/RequestAnimationFrame.js
+++ /dev/null
@@ -1,22 +0,0 @@
-/**
- * Provides requestAnimationFrame in a cross browser way.
- * http://paulirish.com/2011/requestanimationframe-for-smart-animating/
- */
-
-if ( !window.requestAnimationFrame ) {
-
- window.requestAnimationFrame = ( function() {
-
- return window.webkitRequestAnimationFrame ||
- window.mozRequestAnimationFrame ||
- window.oRequestAnimationFrame ||
- window.msRequestAnimationFrame ||
- function( /* function FrameRequestCallback */ callback, /* DOMElement Element */ element ) {
-
- window.setTimeout( callback, 1000 / 60 );
-
- };
-
- } )();
-
-}
diff --git a/src/standalone/pannellum.htm b/src/standalone/pannellum.htm
index dc4c5f2..1ff38a2 100644
--- a/src/standalone/pannellum.htm
+++ b/src/standalone/pannellum.htm
@@ -16,7 +16,6 @@
-