diff options
author | Jonatan Kronqvist <jonatan.kronqvist@itmill.com> | 2011-10-04 06:26:44 +0000 |
---|---|---|
committer | Jonatan Kronqvist <jonatan.kronqvist@itmill.com> | 2011-10-04 06:26:44 +0000 |
commit | cc77282096af4d7b8df0601707e0ac6ea291b076 (patch) | |
tree | 5e0e7fed0780ef8066e65e616c1eea0c9c7c6f47 /WebContent | |
parent | bd9fb1567f27784a28357e086e35849ada5d9972 (diff) | |
download | vaadin-framework-cc77282096af4d7b8df0601707e0ac6ea291b076.tar.gz vaadin-framework-cc77282096af4d7b8df0601707e0ac6ea291b076.zip |
Clearer description in release notes
svn changeset:21537/svn branch:6.7
Diffstat (limited to 'WebContent')
-rw-r--r-- | WebContent/release-notes.html | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/WebContent/release-notes.html b/WebContent/release-notes.html index dbded6c9b6..efe0da4e65 100644 --- a/WebContent/release-notes.html +++ b/WebContent/release-notes.html @@ -317,7 +317,13 @@ <p>If you have been using SQLContainer, TreeTable or Chameleon Theme as add-ons, remove the add-on jars from the project.</p> <p>The DOM structure of Forms without descriptions has changed, which means - that any TestBench scripts testing this kind of Form need to be updated.</p> + that any TestBench scripts testing this kind of Form need to be updated. + If your tests start failing, subtract one from the index in the test script, + e.g. change + <pre class="codeblock">VForm[0]/domChild[0]/domChild[3]</pre> + into + <pre class="codeblock">VForm[0]/domChild[0]/domChild[2]</pre> + and your tests will pass again.</p> <h2 id="dependencies">Vaadin @version@ dependencies</h2> Vaadin uses GWT @gwt-version@ for widget set compilation. GWT can be |