]> source.dussan.org Git - vaadin-framework.git/commitdiff
Notification should be HTML
authorArtur Signell <artur@vaadin.com>
Wed, 12 Sep 2012 08:35:47 +0000 (11:35 +0300)
committerArtur Signell <artur@vaadin.com>
Wed, 12 Sep 2012 12:18:25 +0000 (15:18 +0300)
uitest/src/com/vaadin/tests/components/notification/SemiTransparentNotification.java

index 1745c119827e6e714a0579004d7c6581abf66858..3e3d844956982f193e14ef642dbcdb705de1d42e 100755 (executable)
@@ -1,9 +1,11 @@
 package com.vaadin.tests.components.notification;
 
+import com.vaadin.server.Page;
 import com.vaadin.tests.components.TestBase;
 import com.vaadin.tests.util.LoremIpsum;
 import com.vaadin.ui.Label;
 import com.vaadin.ui.Notification;
+import com.vaadin.ui.Notification.Type;
 
 public class SemiTransparentNotification extends TestBase {
 
@@ -12,9 +14,12 @@ public class SemiTransparentNotification extends TestBase {
         Label l = new Label(LoremIpsum.get(10000));
         getLayout().setSizeFull();
         addComponent(l);
-        Notification
-                .show("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This should be a <br/><b>SEMI-TRANSPARENT</b><br/> notification",
-                        Notification.TYPE_WARNING_MESSAGE);
+
+        Notification n = new Notification(
+                "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This should be a <br/><b>SEMI-TRANSPARENT</b><br/> notification",
+                Type.WARNING_MESSAGE);
+        n.setHtmlContentAllowed(true);
+        n.show(Page.getCurrent());
     }
 
     @Override