[Webkit-unassigned] [Bug 19315] New: Table cell background image inherited incorrectly

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu May 29 17:04:48 PDT 2008


http://bugs.webkit.org/show_bug.cgi?id=19315

           Summary: Table cell background image inherited incorrectly
           Product: WebKit
           Version: 525.x (Safari 3.1)
          Platform: Macintosh
        OS/Version: Mac OS X 10.5
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: CSS
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: chendo+webkit at gmail.com


When applying a background style to a <tr> tag, all the cells within that <tr>
tag inherits the background tag, causing the background image to be applied
more than once.

This renders fine in FF3b6, haven't checked other browsers yet.

Reproducible code is below:

<html>
<head>
  <title>WebKit CSS bug</title>
  <style type="text/css">
  <!--
  tr
  {
    background: url(http://www.google.com/images/nav_logo3.png) no-repeat;
  }

  th, td
  {
    width: 200px;
    height: 100px;
  }
  -->
  </style>
</head>
<body>
  <table>
    <tr>
      <th>blah</th>
      <th>blah</th>
      <th>blah</th>
      <td>blah</td>
      <td>blah</td>
    </tr>
  </table>
</body>
</html>


-- 
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.



More information about the webkit-unassigned mailing list