[Webkit-unassigned] [Bug 13670] New: Table misrender when one of the TDs has width=100%

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu May 10 17:35:52 PDT 2007


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

           Summary: Table misrender when one of the TDs has width=100%
           Product: WebKit
           Version: 522+ (nightly)
          Platform: Macintosh
        OS/Version: Mac OS X 10.4
            Status: UNCONFIRMED
          Severity: Major
          Priority: P2
         Component: Layout and Rendering
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: bhagyalaxmi.dash at wipro.com


Table misrenders, assumes some arbitrary width when one of the TDs has
width=100%. Please see the reduction given below.

In the reduction , the first TD has the width=100% and the second TD is
blank(&nbsp). But, the table takes its width between 376 to 858 depending on
the size of the browser window.

In Firefox, table is occupying the entire width available to the browser
window. In addition to that it is not taking any arbitrary value.

This issue affects the rendering of certain tables in SAP NetWeaver portal that
works perfectly in Firefox.


<html>
<head>
<script>
function f1()
{
  var tab1=document.getElementById("table1");
  alert("Table Width "+tab1.offsetWidth);
  var x=document.getElementById("tdid1");
  alert("Width of first TD "+x.offsetWidth);
}
</script>
</head>
<body onload="javascript:f1()">
<table bgcolor="Red" border="1" id="table1">
<tr>
<td id="tdid1" width="100%"> </td>
<td > </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