diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2015-09-08 18:57:39 +0200 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2015-09-08 19:02:35 +0200 |
commit | 1b566d37a2879af12364a03c633c235a76f49925 (patch) | |
tree | 895bd8e127e5e3a62acfd191c80d8721bd246590 /test/unit/basic.js | |
parent | 5914b103627e3773418ad1fd8c3b034bf3748d51 (diff) | |
download | jquery-1b566d37a2879af12364a03c633c235a76f49925.tar.gz jquery-1b566d37a2879af12364a03c633c235a76f49925.zip |
Tests: Really fix tests in IE 8 this time
IE 8 doesn't have indexOf on arrays. Also, one toLowerCase() was missing. Oops.
This commit is not necessary on master but has been brought here to keep
tests similar in both branches.
(cherry-picked from 1b48eef4caf7fa3aba0ee1a3473e0d46487d20ea)
Diffstat (limited to 'test/unit/basic.js')
-rw-r--r-- | test/unit/basic.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/basic.js b/test/unit/basic.js index b1b9205ce..25e86d1a3 100644 --- a/test/unit/basic.js +++ b/test/unit/basic.js @@ -200,7 +200,7 @@ QUnit.test( "manipulation", function( assert ) { // Support: IE 8 only // IE 8 prints tag names in upper case. - elem1.html(), + elem1.html().toLowerCase(), "<div></div><b></b><span></span><a></a>", ".after/.before" ); |