Bug 197158

Summary: Using CSS wide keywords as a fallback for variable substitution works inconsistently.
Product: WebKit Reporter: Emilio Cobos Álvarez (:emilio) <emilio>
Component: CSSAssignee: Nobody <webkit-unassigned>
Status: RESOLVED FIXED    
Severity: Normal CC: darin, esprehn+autocc, ews-watchlist, glenn, gyuyoung.kim, jbedard, macpherson, menard, sam, twilco.o, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Testcase.
none
Patch
none
Patch
none
Patch none

Description Emilio Cobos Álvarez (:emilio) 2019-04-22 08:36:48 PDT
Created attachment 367940 [details]
Testcase.

STR: Open the attached test-case.

Expected result:

A 10px border of the initial color.

Actual result:

The border is transparent, but if I change `color: var(--unknown, initial)` by just `initial`, then it works. So `var(--unknown, inherit)` works but `var(--unknown, initial)` doesn't. I don't see why they should be different.

Chromium has the same bug: https://bugs.chromium.org/p/chromium/issues/detail?id=954963
Comment 1 Emilio Cobos Álvarez (:emilio) 2019-04-22 08:37:31 PDT
I'm fixing Firefox (which doesn't support wide keywords altogether) in https://bugzilla.mozilla.org/show_bug.cgi?id=1544886
Comment 2 Tyler Wilcock 2020-10-05 13:59:45 PDT
Created attachment 410552 [details]
Patch
Comment 3 Tyler Wilcock 2020-10-06 12:26:50 PDT
Created attachment 410678 [details]
Patch
Comment 4 Sam Weinig 2020-10-06 17:46:57 PDT
Comment on attachment 410678 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=410678&action=review

> Source/WebCore/css/parser/CSSPropertyParser.cpp:296
> +    if (value)

Can value ever be null here?
Comment 5 Darin Adler 2020-10-06 18:45:03 PDT
Comment on attachment 410678 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=410678&action=review

>> Source/WebCore/css/parser/CSSPropertyParser.cpp:296
>> +    if (value)
> 
> Can value ever be null here?

It can’t and this if statement can be removed.

> Source/WebCore/css/parser/CSSPropertyParser.cpp:304
> +    if (RefPtr<CSSValue> value = maybeConsumeCSSWideKeyword(parser.m_range))

auto

> Source/WebCore/css/parser/CSSPropertyParser.cpp:369
> +    RefPtr<CSSValue> value = maybeConsumeCSSWideKeyword(rangeCopy);

auto
Comment 6 Tyler Wilcock 2020-10-06 18:54:26 PDT
Created attachment 410724 [details]
Patch
Comment 7 EWS 2020-10-07 15:41:30 PDT
Committed r268157: <https://trac.webkit.org/changeset/268157>

All reviewed patches have been landed. Closing bug and clearing flags on attachment 410724 [details].
Comment 8 Radar WebKit Bug Importer 2020-10-07 15:42:18 PDT
<rdar://problem/70068414>