Merge pull request #442 from arturadib/fix-tellAppToQuit

Fixed browser shutdown bug in Mac tests
This commit is contained in:
Andreas Gal 2011-09-06 11:06:38 -07:00
commit 1db8ccaa21

View File

@ -157,7 +157,7 @@ function snapshotCurrentPage(page, task, failure) {
function sendQuitRequest() { function sendQuitRequest() {
var r = new XMLHttpRequest(); var r = new XMLHttpRequest();
r.open('POST', '/tellMeToQuit?path = ' + escape(appPath), false); r.open('POST', '/tellMeToQuit?path=' + escape(appPath), false);
r.send(''); r.send('');
} }