-webkit-text-stroke-width declaration by inheritance is missing in certain cases |
|||
Issue description
UserAgent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.94 Safari/537.36
Steps to reproduce the problem:
1. Go to data:text/html,<!doctype html><body style="font-family: sans-serif;-webkit-text-stroke-width: 0.2px;"><div>1</div>
2. Inspect the <div>
3. See at the bottom of the Style pane -
Inherited from body
Style Attribute {
font-family: sans-serif;
-webkit-text-stroke-width: 0.2px;
}
4. Go to data:text/html,<!doctype html><body style="-webkit-text-stroke-width: 0.2px;"><div>1</div>
5. Inspect the <div>
What is the expected behavior?
See at the bottom of the Style pane -
Inherited from body
Style Attribute {
-webkit-text-stroke-width: 0.2px;
}
What went wrong?
-webkit-text-stroke-width: 0.2px; from <body style> is missing.
Did this work before? N/A
Chrome version: 50.0.2661.94 Channel: n/a
OS Version: 6.1 (Windows 7, Windows Server 2008 R2)
Flash Version: Shockwave Flash 21.0 r0
,
May 17 2016
,
Aug 5 2016
The following revision refers to this bug: https://chromium.googlesource.com/chromium/src.git/+/7b343b5c6b9b936433ec1a379ee92ae87cde79fa commit 7b343b5c6b9b936433ec1a379ee92ae87cde79fa Author: lushnikov <lushnikov@chromium.org> Date: Fri Aug 05 19:07:19 2016 DevTools: generate information about property inheritance. The patch removes hard-coded and outdated list of inherited properties and starts generate it instead. BUG= 612420 R=dgozman Review-Url: https://codereview.chromium.org/2220473002 Cr-Commit-Position: refs/heads/master@{#410125} [modify] https://crrev.com/7b343b5c6b9b936433ec1a379ee92ae87cde79fa/third_party/WebKit/Source/devtools/front_end/sdk/CSSMetadata.js [modify] https://crrev.com/7b343b5c6b9b936433ec1a379ee92ae87cde79fa/third_party/WebKit/Source/devtools/scripts/generate_supported_css.py
,
Aug 5 2016
|
|||
►
Sign in to add a comment |
|||
Comment 1 by phistuck@chromium.org
, May 17 2016Status: Untriaged (was: Unconfirmed)