[Webkit-unassigned] [Bug 21092] New: Specifying DOCTYPE messes up rendering

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Sep 25 00:41:12 PDT 2008


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

           Summary: Specifying DOCTYPE messes up rendering
           Product: WebKit
           Version: 525.x (Safari 3.1)
          Platform: PC
        OS/Version: Windows Vista
            Status: UNCONFIRMED
          Severity: Major
          Priority: P2
         Component: Layout and Rendering
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: gmtfn at yahoo.com


Consider the sample code below. With the DOCTYPE specified, the tables aren't
rendered as specified (inline), and backgrounds are ignored. However, removing
the DOCTYPE makes browsers that use Webkit (Safari and Google Chrome) render
the code as expected -- like all other browsers (Firefox, IE, and Opera) do.

I don't know how far reaching this problem is.


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 
        "http://www.w3.org/TR/html4/strict.dtd">

<html>
<body>
<table style="display:inline; background: green; width: 100px;">
<tr><td>inline table 1</td></tr>
</table> 

<table style="display:inline; background: blue; width: 100px;">
<tr><td>inline table 2</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, or are watching the assignee.



More information about the webkit-unassigned mailing list