[Webkit-unassigned] [Bug 29636] New: Long text lines are rendered as empty for the first 2**16 characters
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue Sep 22 04:35:40 PDT 2009
https://bugs.webkit.org/show_bug.cgi?id=29636
Summary: Long text lines are rendered as empty for the first
2**16 characters
Product: WebKit
Version: 528+ (Nightly build)
Platform: PC
OS/Version: Windows XP
Status: UNCONFIRMED
Severity: Normal
Priority: P2
Component: Layout and Rendering
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: dtm at google.com
The following perl script outputs an html file that should be rendered as three
lines inside a <pre> block. When opened in Safari ( 4.0.3 (531.9.1) ) or in
Google Chrome (3.0.195.21), the first and third lines are blank for the first
65536 characters. The middle line, slightly shorter than 65536 characters, is
rendered in full.
#! /usr/bin/perl
print '<html>
<head>
<title>Long lines, bad webkit</title>
</head>
<body>
<pre>
';
print "$_ " for (1..12_774);
print '<br>';
print "$_ " for (1..12_773);
print '<br>';
print "$_ " for (1..12_775);
print '
</pre></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