Updated Branches: refs/heads/1.3.x 6fcb57381 -> 81a36ca51 refs/heads/master 7c0beca00 -> 5bbed4956
Do not run attachment_ranges.js in Chrome as Chrome is broken there. Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/5bbed495 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/5bbed495 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/5bbed495 Branch: refs/heads/master Commit: 5bbed4956814f5a38e291904583b70defcc93a89 Parents: 7c0beca Author: Jan Lehnardt <[email protected]> Authored: Thu Mar 14 20:13:02 2013 +0100 Committer: Jan Lehnardt <[email protected]> Committed: Thu Mar 14 20:28:01 2013 +0100 ---------------------------------------------------------------------- share/www/script/test/attachment_ranges.js | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/5bbed495/share/www/script/test/attachment_ranges.js ---------------------------------------------------------------------- diff --git a/share/www/script/test/attachment_ranges.js b/share/www/script/test/attachment_ranges.js index a4ea4d3..9b32681 100644 --- a/share/www/script/test/attachment_ranges.js +++ b/share/www/script/test/attachment_ranges.js @@ -23,6 +23,11 @@ couchTests.attachment_ranges = function(debug) { if (debug) debugger; + if(window.navigator.userAgent.match(/Chrome/)) { + // Chrome is broken. + return; + } + var binAttDoc = { _id: "bin_doc", _attachments: {
