We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
.text()
1 parent 44c56f8 commit b84146cCopy full SHA for b84146c
test/unit/manipulation.js
@@ -53,8 +53,12 @@ QUnit.test( "text()", function( assert ) {
53
54
$newLineTest.remove();
55
56
- doc = new DOMParser().parseFromString( "<span>example</span>", "text/html" );
57
- assert.equal( jQuery( doc ).text(), "example", "text() on HTMLDocument (gh-5264)" );
+ if ( !document.documentMode || document.documentMode > 9 ) {
+ 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
+ }
62
} );
63
64
QUnit.test( "text(undefined)", function( assert ) {
0 commit comments