[Webkit-unassigned] [Bug 33858] New: Right border not displayed on floated element
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue Jan 19 12:56:39 PST 2010
https://bugs.webkit.org/show_bug.cgi?id=33858
Summary: Right border not displayed on floated element
Product: WebKit
Version: 528+ (Nightly build)
Platform: PC
URL: http://paulisageek.com/tmp/chrome_bug.html
OS/Version: Mac OS X 10.5
Status: UNCONFIRMED
Severity: Normal
Priority: P2
Component: HTML DOM
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: webkit at paulisageek.com
Test case:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html><head><style type="text/css">
div {
float: left;
clear: left;
margin: 3px;
}
span {
border: 1px solid;
}
</style></head><body>
<!-- does not show right border -->
<div><span>With trailing space, no width </span></div>
<!-- does show right border -->
<div><span>No trailing space, no width</span></div>
<div style="width: 40ex;"><span>With trailing space, has width </span></div>
<div style="width: 40ex;"><span>No trailing space, has width</span></div>
</body></html>
I expect there to be a full border on all elements.
--
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