aboutsummaryrefslogtreecommitdiffstats
path: root/test/data
diff options
context:
space:
mode:
authorOleg Gaidarenko <markelog@gmail.com>2014-04-04 22:31:38 +0400
committerOleg Gaidarenko <markelog@gmail.com>2014-04-15 17:46:00 +0400
commitf3b89ba0820882bd4ce4404b7e7c819e7b506de5 (patch)
tree91355b3ed25b71d5a0b6e560c651437eddb4b6be /test/data
parent1dedd3185ea1e9853a2ce26ef3051c63201b4533 (diff)
downloadjquery-f3b89ba0820882bd4ce4404b7e7c819e7b506de5.tar.gz
jquery-f3b89ba0820882bd4ce4404b7e7c819e7b506de5.zip
Tests: Fix failing ajax tests in oldIE
(cherry-picked from the 71780965072b1271018f2cf360e82fbe31f4987e) Picked up so tests from the 1.x-master would be more similar to this branch
Diffstat (limited to 'test/data')
-rw-r--r--test/data/test.html2
-rw-r--r--test/data/test.php4
-rw-r--r--test/data/testbar.php (renamed from test/data/test.js)2
3 files changed, 4 insertions, 4 deletions
diff --git a/test/data/test.html b/test/data/test.html
index eec028e90..f5bc2199f 100644
--- a/test/data/test.html
+++ b/test/data/test.html
@@ -3,5 +3,5 @@ html text<br/>
testFoo = "foo"; jQuery('#foo').html('foo');
ok( true, "test.html executed" );
/* ]]> */</script>
-<script src="data/test.js"></script>
+<script src="data/testbar.php"></script>
blabla
diff --git a/test/data/test.php b/test/data/test.php
index 3d08f3253..d93dafad8 100644
--- a/test/data/test.php
+++ b/test/data/test.php
@@ -3,5 +3,5 @@ html text<br/>
testFoo = "foo"; jQuery('#foo').html('foo');
ok( true, "test.php executed" );
/* ]]> */</script>
-<script src="data/test.js?<?php srand(); echo time() . '' . rand(); ?>"></script>
-blabla \ No newline at end of file
+<script src="data/testbar.php?<?php srand(); echo time() . '' . rand(); ?>"></script>
+blabla
diff --git a/test/data/test.js b/test/data/testbar.php
index fb3395296..21aa6882b 100644
--- a/test/data/test.js
+++ b/test/data/testbar.php
@@ -1,3 +1,3 @@
this.testBar = "bar";
jQuery("#ap").html("bar");
-ok( true, "test.js executed");
+ok( true, "testbar.php executed");