Skip to content

Commit b84146c

Browse files
committed
Tests: Skip a new .text() test in IE 9
The test depends on `DOMParser`'s `parseFromString` called with `text/html` which is not supported in IE 9.
1 parent 44c56f8 commit b84146c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/unit/manipulation.js

+6-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,12 @@ QUnit.test( "text()", function( assert ) {
5353

5454
$newLineTest.remove();
5555

56-
doc = new DOMParser().parseFromString( "<span>example</span>", "text/html" );
57-
assert.equal( jQuery( doc ).text(), "example", "text() on HTMLDocument (gh-5264)" );
56+
if ( !document.documentMode || document.documentMode > 9 ) {
57+
doc = new DOMParser().parseFromString( "<span>example</span>", "text/html" );
58+
assert.equal( jQuery( doc ).text(), "example", "text() on HTMLDocument (gh-5264)" );
59+
} else {
60+
assert.ok( true, "IE 9 doesn't support DOMParser's parseFromString with text/html" );
61+
}
5862
} );
5963

6064
QUnit.test( "text(undefined)", function( assert ) {

0 commit comments

Comments
 (0)