diff options
author | Oleg Gaidarenko <markelog@gmail.com> | 2015-11-13 16:48:03 +0300 |
---|---|---|
committer | Oleg Gaidarenko <markelog@gmail.com> | 2015-11-13 20:04:24 +0300 |
commit | ea2f10c104e4cf3ada1c0da12ebf4fac0d2801ca (patch) | |
tree | c537e84b49e2f519001d25585d09187061022e5d /test | |
parent | bbd453c0587b970cf714761fb1894231490bac93 (diff) | |
download | jquery-ea2f10c104e4cf3ada1c0da12ebf4fac0d2801ca.tar.gz jquery-ea2f10c104e4cf3ada1c0da12ebf4fac0d2801ca.zip |
Revert "Manipulation: support data-URI scripts insertion"
This reverts commit 15f4dec7894f1e00adbfb9bce4f870441a527bd6.
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/manipulation.js | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js index 492390adf..2069ee5c5 100644 --- a/test/unit/manipulation.js +++ b/test/unit/manipulation.js @@ -2678,12 +2678,3 @@ QUnit.test( "Make sure col element is appended correctly", function( assert ) { assert.strictEqual( table.find( "td" ).width(), 150 ); } ); - -asyncTest( "Insert script with data-URI (gh-1887)", 1, function() { - Globals.register( "testFoo" ); - jQuery( "#qunit-fixture" ).append( "<script src=\"data:text/javascript,testFoo = 'foo';\"></script>" ); - setTimeout(function() { - strictEqual( window[ "testFoo" ], "foo", "data-URI script executed" ); - start(); - }, 100 ); -}); |