[Webkit-unassigned] [Bug 12084] New: Incomplete repaint when moving from page with large body margin to page with large font size

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Jan 2 15:54:12 PST 2007


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

           Summary: Incomplete repaint when moving from page with large body
                    margin to page with large font size
           Product: WebKit
           Version: 420+ (nightly)
          Platform: Macintosh
        OS/Version: Mac OS X 10.4
            Status: NEW
          Keywords: HasReduction
          Severity: Major
          Priority: P2
         Component: New Bugs
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: bdash at webkit.org


<html>
<head>
    <title>Test HTML Page</title>
    <script type="text/javascript">
        var l = window.location.toString();
        if (l[l.length - 1] == 'X')
            document.write('<style type="text/css">menu { font-size:
985902680pt; }</style>');
        else {
            document.write('<style type="text/css">body { margin: 660402812px;
}</style>');
            window.onload = function() {
                var x = document.documentElement.offsetHeight;
                window.setTimeout(function () { location += "?X"; }, 100);
            }
        }
    </script>
</head>
<body>
    <script type="text/javascript">
        var l = window.location.toString();
        if (l[l.length - 1] != 'X')
            document.write('<h1>This should go away after the redirect</h1>')
    </script>
    <menu>menu</menu>
</body>
</html>


Steps to reproduce:
1. Load the file in your browser.
2. Wait for it to reload with an '?X' on the end of the URL.
3. Note that the top 10 or 15 pixels contains remnants of the text 'This should
go away after the redirect'.


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