summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--THANKS1
-rw-r--r--share/www/script/test/changes.js7
2 files changed, 7 insertions, 1 deletions
diff --git a/THANKS b/THANKS
index 1ab4ec61..ebfe7a38 100644
--- a/THANKS
+++ b/THANKS
@@ -34,5 +34,6 @@ suggesting improvements or submitting changes. Some of these people are:
* Mark Hammond <mhammond@skippinet.com.au>
* Kevin Ilchmann Jørgensen <kijmail@gmail.com>
* Dirkjan Ochtman <dirkjan@ochtman.nl>
+ * Sebastian Cohnen <sebastian.cohnen@gmx.net>
For a list of authors see the `AUTHORS` file.
diff --git a/share/www/script/test/changes.js b/share/www/script/test/changes.js
index 314a52b5..690727af 100644
--- a/share/www/script/test/changes.js
+++ b/share/www/script/test/changes.js
@@ -56,10 +56,15 @@ couchTests.changes = function(debug) {
} catch (err) {
}
- if (xhr) {
+ // poor man's browser detection
+ var is_safari = navigator.userAgent.match(/AppleWebKit/);
+ if (!is_safari && xhr) {
// Only test the continuous stuff if we have a real XHR object
// with real async support.
+ // WebKit (last checked on nightly #47686) does fail on processing
+ // the async-request properly while javascript is executed.
+
var sleep = function(msecs) {
// by making a slow sync request, we allow the waiting XHR request data
// to be received.