Open
Bug 1255376
Opened 9 years ago
Updated 2 years ago
inIDOMUtils.getCSSValuesForProperty() is missing calc() function for border-* properties
Categories
(Core :: CSS Parsing and Computation, defect)
Core
CSS Parsing and Computation
Tracking
()
NEW
Tracking | Status | |
---|---|---|
firefox48 | --- | affected |
People
(Reporter: sebo, Unassigned)
References
(Blocks 1 open bug)
Details
Affected properties:
- border-bottom-left-radius
- border-bottom-right-radius
- border-radius
- border-top-left-radius
- border-top-right-radius
Those properties are missing the calc() (and -moz-calc()) function.
Test case (to execute in Scratchpad):
let DOMUtils = Cc["@mozilla.org/inspector/dom-utils;1"].getService(Ci.inIDOMUtils);
let names = ["border-bottom-left-radius", "border-bottom-right-radius", "border-top-left-radius", "border-top-right-radius", "border-radius"];
for (let name of names) {
console.log(DOMUtils.getCSSValuesForProperty(name));
}
Sebastian
Reporter | ||
Comment 1•9 years ago
|
||
Same applies to 'border-spacing'.
Sebastian
Summary: inIDOMUtils.getCSSValuesForProperty() is missing keywords for border-image-* properties → inIDOMUtils.getCSSValuesForProperty() is missing calc() function for border-* properties
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•