[Webkit-unassigned] [Bug 133448] New: [CSSRegions] region-break-after not taken into account on a float

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jun 2 08:01:12 PDT 2014


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

           Summary: [CSSRegions] region-break-after not taken into account
                    on a float
           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
            Blocks: 124706


In the following case:

<html>
    <head>
        <style>
            .flow { border: 5px solid red; -webkit-flow-into: flow; }

            #div1 { float: left; width: 100px; height: 100px; background-color: blue; -webkit-region-break-after: always; }
            #div2 { width: 100px; height: 100px; background-color: green; display: inline-block; }

            .region { -webkit-flow-from: flow; border: 5px solid black; }

            #region1 { position: absolute; top: 100px; left: 100px; }
            #region2 { position: absolute; top: 300px; left: 300px; }
        </style>
    </head>
    <body>
        <div class="flow">
            <div class="float" id="div1"></div>
            <div class="green" id="div2"></div>
        </div>
        <div class="region" id="region1"></div>
        <div class="region" id="region2"></div>
    </body>
</html>

The break on the floating element should be honored, pushing the second div (blue) in the second region.

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