| Index: third_party/WebKit/Source/devtools/front_end/sdk/CSSMetadata.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/CSSMetadata.js b/third_party/WebKit/Source/devtools/front_end/sdk/CSSMetadata.js
|
| index 8add4b5bdbd628080367f4ef647395046326ca5c..6a76d0283de77b417d5c5f03548c54c7231c4be0 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/CSSMetadata.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/CSSMetadata.js
|
| @@ -180,7 +180,8 @@ SDK.CSSMetadata = class {
|
| */
|
| isPropertyInherited(propertyName) {
|
| propertyName = propertyName.toLowerCase();
|
| - return this._inherited.has(this.canonicalPropertyName(propertyName)) || this._inherited.has(propertyName);
|
| + return propertyName.startsWith('--') || this._inherited.has(this.canonicalPropertyName(propertyName)) ||
|
| + this._inherited.has(propertyName);
|
| }
|
|
|
| /**
|
|
|