Bug 102345

Summary: Web Inspector: [Styles] Non-vendor-prefixed property values missing in the computed trace
Product: WebKit Reporter: Alexander Pavlov (apavlov) <apavlov>
Component: Web Inspector (Deprecated)Assignee: Alexander Pavlov (apavlov) <apavlov>
Status: RESOLVED DUPLICATE    
Severity: Normal CC: apavlov, keishi, loislo, pfeldman, pmuellr, vsevik, web-inspector-bugs, yurys
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   

Description Alexander Pavlov (apavlov) 2012-11-15 00:23:02 PST
Reduced test case:

<html>
<head>
	<style>
		body {font-family:monospace; }
		table, tbody, tr, td {border-style:dotted; border-width:6px; }
		.tb1 {border-spacing:inherit; }
	</style>
</head>
    
<body>
	
	<table class ="tb1">
		<tr>
			<td>AAA</td><td>BBB</td>
		</tr>
	</table>
</body>
</html>


Open the test case above and inspect the computed trace for table.tb1. It contains:

-webkit-border-horizontal-spacing: 0px;
    table - 2px     user agent stylesheet

even though "border-spacing: inherit;" is specified in the ".tb1" rule.

Upstreaming http://code.google.com/p/chromium/issues/detail?id=161069
Comment 1 Alexander Pavlov (apavlov) 2012-11-20 00:03:34 PST
Caused by the bug 73002.

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