Skip to content

Commit

Permalink
Adds 'bdi' and 'data' to shim list and test runner. Fixes #11055
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron authored and dmethvin committed Jan 12, 2012
1 parent 491d7e2 commit d07116a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/manipulation.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function createSafeFragment( document ) {
return safeFrag;
}

var nodeNames = "abbr|article|aside|audio|canvas|datalist|details|figcaption|figure|footer|" +
var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" +
"header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",
rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g,
rleadingWhitespace = /^\s+/,
Expand Down
2 changes: 1 addition & 1 deletion test/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

<script>
// html5shiv, enabling HTML5 elements to be used with jQuery
( "abbr article aside audio canvas details figcaption figure footer header hgroup " +
( "abbr article aside audio bdi canvas data details figcaption figure footer header hgroup " +
"mark meter nav output progress section summary time video"
).replace(/\w+/g, function(n) {
document.createElement(n);
Expand Down

0 comments on commit d07116a

Please sign in to comment.