[Bug 9097] Add wbr { content: "\200B"; } (ZWSP)?

http://www.w3.org/Bugs/Public/show_bug.cgi?id=9097

--- Comment #8 from Leif Halvard Silli <xn--mlform-iua@xn--mlform-iua.no> 2011-07-06 17:00:33 UTC ---
(In reply to comment #7)

Or perhaps better, this solution:

/* Outside NOBR:  */
 wbr
     { 
          display:inline-block;
     }

/* Inside NOBR:  */
nobr wbr
      { 
          display:inline; 
          white-space:normal; 
          content:"\00200B";
     }

NOTE:  For IE7/IE6/IE Quirks-Mode, wbr{inline-block;} also works inside NOBR,
but in the other browsers, wbr{inline-block} makes it **not** work in NOBR.

-- 
Configure bugmail: http://www.w3.org/Bugs/Public/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.

Received on Wednesday, 6 July 2011 17:00:42 UTC