diff options
author | Dave Methvin <dave.methvin@gmail.com> | 2012-07-11 22:46:34 -0400 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2012-07-11 23:09:07 -0400 |
commit | f4e5c1729a2efe6086ac2407f82e928b26991f83 (patch) | |
tree | df610b4ddf8d3b3f3aa1c7eb606b3f3ba903a215 /test/data | |
parent | 0bde43aeee5bed5fdfb5bffaecb8c1f43c8fdf19 (diff) | |
download | jquery-f4e5c1729a2efe6086ac2407f82e928b26991f83.tar.gz jquery-f4e5c1729a2efe6086ac2407f82e928b26991f83.zip |
Fix #11547. toLowerCase not work good on XML attributes.
This was fixed to some extent in gh-724 but there were insufficient test cases. Removing the lowercase completely allows IE 6/7 to work properly since there you need an exact case match for attributes, even in HTML docs. More discussion and test cases in the comments on gh-724.
Diffstat (limited to 'test/data')
-rw-r--r-- | test/data/testinit.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/data/testinit.js b/test/data/testinit.js index 7d340acee..18f9e2845 100644 --- a/test/data/testinit.js +++ b/test/data/testinit.js @@ -58,7 +58,7 @@ var createDashboardXML = function() { <dashboard> \ <locations class="foo"> \ <location for="bar" checked="different"> \ - <infowindowtab> \ + <infowindowtab normal="ab" mixedCase="yes"> \ <tab title="Location"><![CDATA[blabla]]></tab> \ <tab title="Users"><![CDATA[blublu]]></tab> \ </infowindowtab> \ |