Permalink
Browse files

added IE8 failing test

  • Loading branch information...
1 parent 5ab57dd commit 2647c23eeaa827db47ea1fb9db375c50a65fdcbb @WebReflection committed Sep 15, 2016
Showing with 16 additions and 0 deletions.
  1. +16 −0 examples/ie8.html
View
@@ -0,0 +1,16 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>IE8 shim/sham test</title>
+ <!--[if IE 8]>
+ <script src="//cdnjs.cloudflare.com/ajax/libs/es5-shim/4.5.9/es5-shim.js"></script>
+ <script src="//cdnjs.cloudflare.com/ajax/libs/es5-shim/4.5.9/es5-sham.js"></script>
+ <![endif]-->
+ <script>
+ this.onload = function () {
+ Array.prototype.slice.call(document.querySelectorAll('*'));
+ };
+ </script>
+ </head>
+ <body></body>
+</html>

0 comments on commit 2647c23

Please sign in to comment.