[Webkit-unassigned] [Bug 129478] New: [CSSRegions] Children of inline-block content-node are not displayed in regions

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Feb 28 02:22:23 PST 2014


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

           Summary: [CSSRegions] Children of inline-block content-node are
                    not displayed in regions
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: CSS
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: mihnea at adobe.com
                CC: WebkitBugTracker at adobe.com
            Blocks: 57312


In the following situation, #div2 is not displayed at all and it should be.
<html>
    <head>
        <style>
            #region1 { -webkit-flow-from: flow; position: absolute; top: 100px; left: 100px; width: 100px; height: 100px; border: 5px solid black; }
            #region2 { -webkit-flow-from: flow; position: absolute; top: 100px; left: 300px; width: 100px; height: 100px; border: 5px solid black; }

            #content1 { -webkit-flow-into: flow; display: inline-block; }

            #div1, #div2 { width: 100px; height: 100px; }
            #div1 { background-color: salmon; }
            #div2 { background-color: orange; }
        </style>
    </head>
    <body>
        <div id="region1"></div>
        <div id="region2"></div>
        <div id="content1">
            <div id="div1"></div>
            <div id="div2"></div>
        </div>
    </body>
</html>

We have to fix region ranges computation for inline-blocks and their children too.

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