diff --git a/readme.md b/readme.md
index 17a0317..dcc9f68 100644
--- a/readme.md
+++ b/readme.md
@@ -7,13 +7,12 @@ html2canvas
###How does it work?###
-The script renders the current page as a canvas image, by reading the DOM and the different styles applied to the elements. However, as many elements are displayed differently on different browsers and operating systems (such as form elements such as radio buttons or checkboxes) as well as
+The script renders the current page as a canvas image, by reading the DOM and the different styles applied to the elements.
-It does not require any rendering from the server, as the whole image is created on the clients browser. However, for browsers without canvas
support alternatives such as flashcanvas or ExplorerCanvas are necessary to create the image.
+It does not require any rendering from the server, as the whole image is created on the clients browser. However, as it is heavily dependent on the browser, this library is *not suitable* to be used on for example on node.js.
+It doesn't magically circumvent and browser content policy restrictions either, so rendering cross origin content will require a proxy to get the content to the same origin.
-Additionally, to render iframe
content or images situated outside of the same origin policy a proxy will be necessary to load the content to the users browser.
-
-The script is still in a very experimental state, so I don't recommend using it in a production environment nor start building applications with it yet, as there will be still major changes made. However, please do test it out and report your findings, especially if something should be working, but is displaying it incorrectly.
+The script is still in a **very experimental state**, so I don't recommend using it in a production environment nor start building applications with it yet, as there will be still major changes made.
###Browser compatibility###
@@ -21,8 +20,8 @@ The script should work fine on the following browsers:
* Firefox 3.5+
* Google Chrome
-* Newer versions of Opera (exactly how new is yet to be determined)
-* >=IE9 (Older versions compatible with the use of flashcanvas)
+* Opera 12+
+* IE9+
Note that the compatibility will most likely be increased in future builds, as many of the current restrictions have at least partial work arounds, which can be used with older browser versions.
@@ -46,6 +45,36 @@ To access the created canvas, provide the `onrendered` event in the options whic
}
});
+### Building ###
+
+The library uses grunt for building. Alternatively, you can download ready builds from the downloads page.
+
+Run the full build process (including lint, qunit and webdriver tests):
+
+ $ grunt
+
+Skip lint tests and simply build from source:
+
+ $ grunt concat
+ $ grunt min
+
+### Running tests ###
+
+The library has two sets of tests. The first set is a number of qunit tests that check that different values parsed by browsers are correctly converted in html2canvas. To run these tests with grunt you'll need phantomjs.
+
+The other set of tests run Firefox, Chrome and Internet Explorer with webdriver. They capture an actual screenshot from the test pages and compare the image to the screenshot created by html2canvas and calculate the percentage differences. These tests generally aren't expected to provide 100% matches, but while commiting changes, these should generally not go decrease from the baseline values.
+
+Run qunit tests:
+
+ $ grunt test
+
+Run webdriver tests:
+
+ $ grunt webdriver
+
+Commiting improvements in baseline values:
+
+ $ grunt webdriver:baseline
### Examples ###
@@ -53,6 +82,11 @@ For more information and examples, please visit the webdriver
+
v0.34 - 26.6.2012
* Removed (last?) jQuery dependencies (niklasvh)