[Webkit-unassigned] [Bug 64005] New: Make a sane CSS implementation of <wbr>

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jul 6 10:10:33 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=64005

           Summary: Make a sane CSS implementation of <wbr>
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
               URL: http://www.w3.org/Bugs/Public/show_bug.cgi?id=9097#c8
        OS/Version: Unspecified
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: New Bugs
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: xn--mlform-iua at xn--mlform-iua.no
                CC: mjs at apple.com


Please drop the current special casing of <wbr> and instead implement the following CSS:

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

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

For mor info, see the following two test pages:

(1) http://www.malform.no/testing/html5/nobr%2Bwbr
(2) http://www.malform.no/testing/html5/nobr

PS: Those test pages seems to document that Webkit doesn't properly support the Zero Width Space character (&#x200B;), so you may need to fix that as well, before the 'Inside NOBR' style will work.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list