diff options
Diffstat (limited to 'uitest/src/com/vaadin/tests/tickets/Ticket1970.java')
-rw-r--r-- | uitest/src/com/vaadin/tests/tickets/Ticket1970.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/uitest/src/com/vaadin/tests/tickets/Ticket1970.java b/uitest/src/com/vaadin/tests/tickets/Ticket1970.java index 839e9e683c..0cd91f518d 100644 --- a/uitest/src/com/vaadin/tests/tickets/Ticket1970.java +++ b/uitest/src/com/vaadin/tests/tickets/Ticket1970.java @@ -65,11 +65,11 @@ public class Ticket1970 extends Application { } })); w.addComponent(new Label("<a href='" + getURL().toExternalForm() + "'>" - + getURL().toExternalForm() + "</a>", ContentMode.XHTML)); + + getURL().toExternalForm() + "</a>", ContentMode.HTML)); w.addComponent(new Label( "<h2>How to reproduce</h2>Open the above link in another browser" + " window and then press the Show-button on this window.", - ContentMode.XHTML)); + ContentMode.HTML)); return w; } |