Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Complete overhaul of the Ajax test suite, it's now passing in all bro…
…wsers. In order to achieve this I had to fix a numbe r of bugs in the suite itself, along with other random bugs that popped up. The following bugs were resolved along the wa y: #1236 (.extend() keeps processing when it hits nulls), #1028 (.extend() now works recursively), #1080 ($.get no longer overwrites the data parameter), #1210 (Creating script and link tags now work), and #1463 (jQuery.global has been re-too led to no longer leak memory and slow things down).
- Loading branch information
Showing
14 changed files
with
362 additions
and
271 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dashboard> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<dashboard> | ||
<locations class="foo"> | ||
<location for="bar"> | ||
<infowindowtab> | ||
<tab title="Location"><![CDATA[blabla]]></tab> | ||
<tab title="Users"><![CDATA[blublu]]></tab> | ||
</infowindowtab> | ||
</location> | ||
</locations> | ||
</dashboard> | ||
<location for="bar"> | ||
<infowindowtab> | ||
<tab title="Location"><![CDATA[blabla]]></tab> | ||
<tab title="Users"><![CDATA[blublu]]></tab> | ||
</infowindowtab> | ||
</location> | ||
</locations> | ||
</dashboard> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
html text<br/> | ||
<script type="text/javascript">/* <![CDATA[ */ | ||
testFoo = "foo"; $('#foo').html('foo'); | ||
ok( true, "test.html executed" ); | ||
/* ]]> */</script> | ||
<script src="data/test.js"></script> | ||
blabla |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
foobar = "bar"; | ||
var foobar = "bar"; | ||
$('#ap').html('bar'); | ||
ok( true, "test.js executed"); | ||
ok( true, "test.js executed"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<script type="text/javascript"> | ||
var testFoo = "foo"; | ||
$('#foo').html('foo'); | ||
ok( true, "test2.html executed" ); | ||
</script> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.