[Webkit-unassigned] [Bug 117359] New: tables with display:block layed out differently than other browsers

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Jun 7 13:06:49 PDT 2013


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

           Summary: tables with display:block layed out differently than
                    other browsers
           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: achristensen at apple.com
                CC: bdakin at apple.com


Firefox and Opera (haven't tested IE) place the first cell data above the second cell data because it has display:block.  WebKit places the first cell data to the left of the second cell data because it's in a table row.  Which is correct?

<html>
  <head>
    <style>
      td
      {
        display:block;
      }
    </style>
  </head>
  <body>
    <table>
      <tr>
        <td>
          first cell data
        </td>
        <td>
          second cell data
        </td>
      </tr>
    </table>
  </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