aboutsummaryrefslogtreecommitdiffstats
path: root/test/data/csp-ajax-script.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/csp-ajax-script.js')
-rw-r--r--test/data/csp-ajax-script.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/test/data/csp-ajax-script.js b/test/data/csp-ajax-script.js
new file mode 100644
index 000000000..c6821a24e
--- /dev/null
+++ b/test/data/csp-ajax-script.js
@@ -0,0 +1,25 @@
+/* global startIframeTest */
+
+var timeoutId, type;
+
+function finalize() {
+ startIframeTest( type, window.downloadedScriptCalled );
+}
+
+timeoutId = setTimeout( function() {
+ finalize();
+}, 1000 );
+
+jQuery
+ .ajax( {
+ url: "csp-ajax-script-downloaded.js",
+ dataType: "script",
+ method: "POST",
+ beforeSend: function( _jqXhr, settings ) {
+ type = settings.type;
+ }
+ } )
+ .then( function() {
+ clearTimeout( timeoutId );
+ finalize();
+ } );