diff options
author | Rick Waldron <waldron.rick@gmail.com> | 2011-09-19 16:42:36 -0400 |
---|---|---|
committer | timmywil <timmywillisn@gmail.com> | 2011-09-19 16:42:36 -0400 |
commit | 9ecdb2472be7661477564e46bce51432d4a5a84e (patch) | |
tree | 5059797d940cc0b009b30141b023caa2afcb5523 /test/index.html | |
parent | bba3d610c7e3b611fe1eb89178c91106a156a5dc (diff) | |
download | jquery-9ecdb2472be7661477564e46bce51432d4a5a84e.tar.gz jquery-9ecdb2472be7661477564e46bce51432d4a5a84e.zip |
Landing pull request 490. 1.7 HTML5 Support for innerHTML, clone & style. Fixes #6485.
More Details:
- https://github.com/jquery/jquery/pull/490
- http://bugs.jquery.com/ticket/6485
Diffstat (limited to 'test/index.html')
-rw-r--r-- | test/index.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/index.html b/test/index.html index 17baa4894..294e04316 100644 --- a/test/index.html +++ b/test/index.html @@ -51,6 +51,15 @@ <script src="unit/effects.js"></script> <script src="unit/offset.js"></script> <script src="unit/dimensions.js"></script> + + <script> + // html5shiv, enabling HTML5 elements to be used with jQuery + ( "abbr article aside audio canvas details figcaption figure footer header hgroup " + + "mark meter nav output progress section subline summary time video" + ).replace(/\w+/g, function(n) { + document.createElement(n); + }); + </script> </head> <body id="body"> |