Tooltip with line break in Vaadin

Hi,
is it possible to write a tooltip with line break?
I tried something like that:

myELement.setAttribute("title", "line \n break");

or

myELement.setAttribute("title", "line &#013 break");

In a basic Html file title="line &#013 break" works fine (in Chrome).

Jan

Have you tried 
?

→ [relevant SO post]
(https://stackoverflow.com/a/30388220/3441504), [Difference between ASCII Chr(10) and Chr(13)]
(https://www.petefreitag.com/item/863.cfm)

yes, unfortunately it does not work in Vaadin either.
When I inspect the item with chrome the title attribute is the same as in my test Html file … BUT it dont break the line in Vaadin.

Jan

Can you try both, to simulate a CRLF? → line 
 break

Also - found in [another related SO post]
(https://stackoverflow.com/a/17172412/3441504) - try using the style white-space: pre-line;

Or use <br> tags, while setting the attribute data-html="true" on myElement. found [here]
(https://stackoverflow.com/a/40528252/3441504)

Thanks for your help so far but it does not work.

Jan