[Webkit-unassigned] [Bug 71200] New: Potential layout bug

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Oct 30 19:49:27 PDT 2011


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

           Summary: Potential layout bug
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Layout and Rendering
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: rniwa at webkit.org
                CC: hyatt at apple.com, mitz at webkit.org, tony at chromium.org,
                    ojan at chromium.org, jamesr at chromium.org,
                    tabatkins at google.com


Created an attachment (id=113009)
 --> (https://bugs.webkit.org/attachment.cgi?id=113009&action=review)
test

The following markup results in different layout on WebKit and Gecko. I suspect this is a WebKit bug because removing the inner-most div (the one with comment) will result in WebKit's rendering matching Gecko

<!DOCTYPE html>
<html>
<body>
<div style="height:50px; border: solid 2px red;">
    <div style="height:50px;"></div>
    <div style="height:20px; border: solid 2px blue;">
        <div style="height:20px;"><!-- If you delete this div, then WebKit matches Gecko -->
            <span style="padding-left: 100px;float:left;">This text appears on the right of "Content" on WebKit but above "Content" on Gecko</span>
        </div>
    </div>
</div>
<div class="content" style="clear:both;">
Content
</div>
</body>
</html>

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