1
1
mirror of https://github.com/ariya/phantomjs.git synced 2024-10-26 14:29:13 +03:00

Merge error in previous commit

This commit is contained in:
Zack Weinberg 2015-12-21 10:45:32 -05:00
parent cbe3e2afbf
commit b38fd78eb1

View File

@ -31,8 +31,8 @@ var cookies = {
test(function () {
var i, c, d, prop;
for (i in cookies) {
if (!cookiesWithExpires.hasOwnProperty(i)) continue;
phantom.addCookie(cookiesWithExpires[i]);
if (!cookies.hasOwnProperty(i)) continue;
phantom.addCookie(cookies[i]);
}
for (i in phantom.cookies) {
d = phantom.cookies[i];