mirror of
https://github.com/jquery/jquery.git
synced 2026-04-20 03:01:22 -04:00
Use a different workaround for detecting when Opera finds a status 304 page. Fixes #6060.
This commit is contained in:
1
test/data/notmodified.php
Normal file
1
test/data/notmodified.php
Normal file
@@ -0,0 +1 @@
|
||||
<?php header('HTTP/1.0 304 Not Modified'); exit; ?>
|
||||
@@ -68,6 +68,18 @@ test("jQuery.ajax() - error callbacks", function() {
|
||||
});
|
||||
});
|
||||
|
||||
test(".ajax() - 304", function() {
|
||||
expect( 1 );
|
||||
stop();
|
||||
|
||||
jQuery.ajax({
|
||||
url: url("data/notmodified.php"),
|
||||
success: function(){ ok(true, "304 ok"); },
|
||||
error: function(){ ok(false, "304 not ok "); },
|
||||
complete: function(xhr){ start(); }
|
||||
});
|
||||
});
|
||||
|
||||
test(".load()) - 404 error callbacks", function() {
|
||||
expect( 6 );
|
||||
stop();
|
||||
|
||||
Reference in New Issue
Block a user