From ba9e0fc177841bd74cc5ea4e52f09cd87d747bf5 Mon Sep 17 00:00:00 2001 From: John Resig Date: Tue, 21 Sep 2010 15:22:34 -0400 Subject: Use a different workaround for detecting when Opera finds a status 304 page. Fixes #6060. --- test/data/notmodified.php | 1 + test/unit/ajax.js | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 test/data/notmodified.php (limited to 'test') diff --git a/test/data/notmodified.php b/test/data/notmodified.php new file mode 100644 index 000000000..0309a6bcf --- /dev/null +++ b/test/data/notmodified.php @@ -0,0 +1 @@ + diff --git a/test/unit/ajax.js b/test/unit/ajax.js index 8e3c4b670..7f3f39aff 100644 --- a/test/unit/ajax.js +++ b/test/unit/ajax.js @@ -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(); -- cgit v1.2.3