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 |
Alexander Pavlov (apavlov)
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
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Alexander Pavlov (apavlov)
Caused by the bug 73002.
*** This bug has been marked as a duplicate of bug 73002 ***