I am using tab characters in a HTML title attribute for display in a tooltip, which works as I expected in Firefox (112.0.2). In Chrome (112.0.5615.138) however, this is not the case, it seems to replace tabs with spaces (or something alike), causing text to not align on different lines.
<div title="X	X 	X" style="width:50px;height:50px;background:yellow;"></div>
I have found this SO answer which shows use of the tab character, but this only applies when the tab characters are at the start of a line.
Is it possible, without resorting to custom tooltip elements, to display the Chrome tooltip like the Firefox one?
The title attribute specification does not say anything about tab characters (as far as I can see), so I am guessing that I am out of luck...