Commit 1d02ae71 1d02ae718507d8b0e54cd3e29e999fdbaa2a92f1 by Laurent Jouanneau

Refs #482: Updated documentation

1 parent 8139180a
...@@ -12,6 +12,14 @@ This version is yet to be released, and will possibly be tagged as 2.0 as not-so ...@@ -12,6 +12,14 @@ This version is yet to be released, and will possibly be tagged as 2.0 as not-so
12 12
13 **PhantomJS 1.8.1 or later is required for 1.1.** 13 **PhantomJS 1.8.1 or later is required for 1.1.**
14 14
15 #### Support of Gecko, with SlimerJS
16
17 CasperJS can now be launched with [SlimerJS](http://slimerjs.org) instead of PhantomJS.
18 It allows you to execute tests with the rendering engine of Firefox. Just launch CasperJS
19 with the flag `--engine=slimerjs`.
20
21 SlimerJS 0.8 or later is required.
22
15 #### `require()` in custom modules 23 #### `require()` in custom modules
16 24
17 CasperJS 1.1 now internally uses PhantomJS' native `require()` function, but it has side effect if you write your own casperjs modules; in any casperjs module, you now have to use the new global `patchRequire()` function first: 25 CasperJS 1.1 now internally uses PhantomJS' native `require()` function, but it has side effect if you write your own casperjs modules; in any casperjs module, you now have to use the new global `patchRequire()` function first:
......
...@@ -17,7 +17,7 @@ Prerequisites ...@@ -17,7 +17,7 @@ Prerequisites
17 17
18 .. versionadded:: 1.1 18 .. versionadded:: 1.1
19 19
20 - Experimental: SlimerJS_ 0.7 or greater to run your tests against Gecko (Firefox) instead of Webkit. 20 - Experimental: SlimerJS_ 0.8 or greater to run your tests against Gecko (Firefox) instead of Webkit.
21 21
22 .. note:: 22 .. note::
23 23
......