Open
Bug 1254949
Opened 9 years ago
Updated 9 months ago
[meta] InspectorUtils::GetCSSValuesForProperty doesn't always return appropriate keywords
Categories
(Core :: CSS Parsing and Computation, defect)
Core
CSS Parsing and Computation
Tracking
()
NEW
Tracking | Status | |
---|---|---|
firefox48 | --- | affected |
People
(Reporter: sebo, Unassigned)
References
(Depends on 6 open bugs)
Details
(Keywords: meta)
Sometimes it happens that inIDOMUtils.getCSSValuesForProperty() doesn't return all the keyword values valid for a property.
This bug is meant as a meta-bug to fix those issues.
Sebastian
Updated•8 years ago
|
Blocks: devtools/auto-completion
Comment 1•7 years ago
|
||
Derive the data from Servo side may potentially fix many of the issues here, or at least make them easier to fix.
Depends on: 1434130
Updated•2 years ago
|
Severity: normal → S3
Updated•2 years ago
|
Summary: inIDOMUtils.getCSSValuesForProperty() doesn't always return appropriate keywords → [meta] inIDOMUtils.getCSSValuesForProperty() doesn't always return appropriate keywords
Comment 2•9 months ago
|
||
(In reply to Xidorn Quan [:xidorn] UTC+11 from comment #1)
Derive the data from Servo side may potentially fix many of the issues here,
or at least make them easier to fix.
This seems to be the case now: https://searchfox.org/mozilla-central/rev/dc08a7321a22918d5a26b7641f9b10cd2a09d98e/layout/inspector/InspectorUtils.cpp#596,601
void InspectorUtils::GetCSSValuesForProperty(GlobalObject& aGlobalObject,
...
Servo_Property_GetCSSValuesForProperty(&aProperty, &found, &aResult);
Servo_Property_GetCSSValuesForProperty
is defined in https://searchfox.org/mozilla-central/rev/dc08a7321a22918d5a26b7641f9b10cd2a09d98e/servo/ports/geckolib/glue.rs#1415-1434
Summary: [meta] inIDOMUtils.getCSSValuesForProperty() doesn't always return appropriate keywords → [meta] InspectorUtils::GetCSSValuesForProperty doesn't always return appropriate keywords
You need to log in
before you can comment on or make changes to this bug.
Description
•