[Webkit-unassigned] [Bug 70792] [Meta] New flexbox needs to handle different display/position types

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Jul 27 15:11:38 PDT 2012


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





--- Comment #1 from Tony Chang <tony at chromium.org>  2012-07-27 15:11:41 PST ---
The spec has been updated and this is currently what the examples are:

<div style="display: -webkit-flex">
    <div id="item1">block</div>

    <!-- flex item: floated element; floating is ignored -->
    <div id="item2" style="float: left;">float</div>

    <!-- flex item: anonymous block box around inline content -->
    anonymous item 3

    <!-- flex item: inline child -->
    <span>
        item 4
        <!-- flex items do not split around blocks -->
        <div id=not-an-item>item 4</div>
        item 4
    </span>
</div>

We seem to handle this correctly, except for item2 where we get the right size, but don't seem to paint the float (!).

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