Commit d17faf00 d17faf0032209257947827afaf7b6fc8acc4796b by Nicolas Perriault

ensured compatibility with phantomjs 1.5

1 parent b329b397
...@@ -11,6 +11,7 @@ XXXX-XX-XX, v0.6.5 ...@@ -11,6 +11,7 @@ XXXX-XX-XX, v0.6.5
11 - added `--log-level` and `--direct` options to `casper test` command 11 - added `--log-level` and `--direct` options to `casper test` command
12 - fixed 0.6.4 version number in `bootstrap.js` 12 - fixed 0.6.4 version number in `bootstrap.js`
13 - centralized version number to package.json 13 - centralized version number to package.json
14 - ensured compatibility with PhantomJS 1.5
14 15
15 2012-02-09, v0.6.4 16 2012-02-09, v0.6.4
16 ------------------ 17 ------------------
......
...@@ -20,9 +20,13 @@ PHANTOMJS_NATIVE_ARGS = [ ...@@ -20,9 +20,13 @@ PHANTOMJS_NATIVE_ARGS = [
20 'local-to-remote-url-access', 20 'local-to-remote-url-access',
21 'max-disk-cache-size', 21 'max-disk-cache-size',
22 'output-encoding', 22 'output-encoding',
23 'remote-debugger-port',
24 'remote-debugger-autorun',
23 'proxy', 25 'proxy',
26 'proxy-auth',
24 'proxy-type', 27 'proxy-type',
25 'script-encoding', 28 'script-encoding',
29 'web-security',
26 ] 30 ]
27 CASPER_ARGS = [] 31 CASPER_ARGS = []
28 PHANTOMJS_ARGS = [] 32 PHANTOMJS_ARGS = []
......