[Webkit-unassigned] [Bug 105126] New: Flexbox should ignore firstLetter pseudo element.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Dec 16 00:47:06 PST 2012


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

           Summary: Flexbox should ignore firstLetter pseudo element.
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: Layout and Rendering
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: huangxueqing at baidu.com


The flex item should not apply flex container's '::first-line' and '::first-letter' pseudo elements.
testcase:
<style> 
    div { display: -webkit-flex;  display: -moz-flex; display: flex; } 
    div::first-letter { line-height: 100px;} 
    p:first-child { -webkit-order: 1; -moz-order: 1; order: 1;}
</style>
<div>
    <p>The first item.</p>
    <p>The second item.</p>
</div>
The property 'line-height: 100px' should apply to <p>, opera 12.11, IE 10 and firefox 20 alpha were correct.

'::first-line' see bug #104485.

-- 
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