diff options
Diffstat (limited to 'uitest/src/com/vaadin/tests/Components.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/Components.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/uitest/src/com/vaadin/tests/Components.java b/uitest/src/com/vaadin/tests/Components.java index 5d1cb6a5dc..b766ab27f3 100644 --- a/uitest/src/com/vaadin/tests/Components.java +++ b/uitest/src/com/vaadin/tests/Components.java @@ -96,7 +96,7 @@ public class Components extends Application { naviLayout .addComponent(new Label( "Click to open a test case.<br/>Right click to open test in a new window<br/><br/>", - ContentMode.XHTML)); + ContentMode.HTML)); naviLayout.addComponent(createMenu()); naviLayout.addComponent(createMissingTestsList()); @@ -107,7 +107,7 @@ public class Components extends Application { embeddingLayout .addComponent(new Label( "<b>Do not use the embedded version for creating automated tests. Open the test in a new window before recording.</b><br/>", - ContentMode.XHTML)); + ContentMode.HTML)); applicationEmbedder.setSizeFull(); embeddingLayout.addComponent(applicationEmbedder); embeddingLayout.setExpandRatio(applicationEmbedder, 1); @@ -130,7 +130,7 @@ public class Components extends Application { + component.getSimpleName() + "</font><br/>"; } return new Label("<b>Components without a test:</B><br/>" - + missingTests, ContentMode.XHTML); + + missingTests, ContentMode.HTML); } private Component createMenu() { |