Bug 118523

Summary: Element with CSS style "border-width:0.0133cm;" doesn't paint the border line out
Product: WebKit Reporter: Chen Zhixiang <chenzx>
Component: Layout and RenderingAssignee: Nobody <webkit-unassigned>
Status: RESOLVED DUPLICATE    
Severity: Normal    
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Test case none

Description Chen Zhixiang 2013-07-09 22:50:08 PDT
Test data:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN" "http://www.w3.org/Math/DTD/mathml2/xhtml-math11-f.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><head><style type="text/css">
table {}
td, th { border-width:0.0133cm; border-style:solid; border-color:#000000;}
</style></head><body>
<table border="0" cellspacing="0" cellpadding="0">
    <colgroup><col width="42"/><col width="99"/></colgroup>
    <tr class="ro1"><td>Test</td></tr>
</table></body></html>

PS: Event the newest Chrome 28 could not paint the border line, but Firefox 22 can.
Comment 1 Chen Zhixiang 2013-07-09 22:52:40 PDT
Created attachment 206368 [details]
Test case
Comment 2 Chen Zhixiang 2013-07-10 00:55:55 PDT
The further trimmed case:

<html><head><style type="text/css">
div { border-width:0.0133cm; border-style:solid; border-color:#000000;}
</style></head><body>
<div>Test Div</div>
</body></html>
Comment 3 Chen Zhixiang 2013-07-10 01:37:48 PDT

*** This bug has been marked as a duplicate of bug 13709 ***