From fca0f7a6b70160e94d4504537110d7689a3c4344 Mon Sep 17 00:00:00 2001 From: Artur Signell Date: Tue, 3 Sep 2013 11:01:07 +0300 Subject: [PATCH] Add
as empty representation for webkit (#12490) Change-Id: Idfb1c770d411b0516046e40852b79da6f9c7916c --- client/src/com/vaadin/client/ui/VRichTextArea.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/com/vaadin/client/ui/VRichTextArea.java b/client/src/com/vaadin/client/ui/VRichTextArea.java index 34693ce392..0b2c1e574c 100644 --- a/client/src/com/vaadin/client/ui/VRichTextArea.java +++ b/client/src/com/vaadin/client/ui/VRichTextArea.java @@ -403,7 +403,7 @@ public class VRichTextArea extends Composite implements Field, KeyPressHandler, result = ""; } } else if (browser.isWebkit()) { - if ("

".equals(result)) { + if ("
".equals(result) || "

".equals(result)) { result = ""; } } else if (browser.isIE()) { -- 2.39.5