Bug 102345 - Web Inspector: [Styles] Non-vendor-prefixed property values missing in the computed trace
Summary: Web Inspector: [Styles] Non-vendor-prefixed property values missing in the co...
Status: RESOLVED DUPLICATE of bug 73002
Alias: None
Product: WebKit
Classification: Unclassified
Component: Web Inspector (Deprecated) (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Alexander Pavlov (apavlov)
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-11-15 00:23 PST by Alexander Pavlov (apavlov)
Modified: 2012-11-20 00:03 PST (History)
8 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 ***