Closed
Bug 1255402
Opened 9 years ago
Closed 7 years ago
inIDOMUtils.getCSSValuesForProperty() is missing values for 'object-position' and 'perspective-origin'
Categories
(Core :: CSS Parsing and Computation, defect)
Core
CSS Parsing and Computation
Tracking
()
VERIFIED
FIXED
mozilla59
Tracking | Status | |
---|---|---|
firefox59 | --- | verified |
People
(Reporter: sebo, Assigned: tromey)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
The 'object-position' and 'perspective-origin' properties are missing their <position> keywords 'top', 'left', 'bottom', 'right' and 'center' as well as the cal() (and -moz-calc()) function.
Test case (to execute in Scratchpad):
let DOMUtils = Cc["@mozilla.org/inspector/dom-utils;1"].getService(Ci.inIDOMUtils);
let names = ["object-position", "perspective-origin"];
for (let name of names) {
console.log(DOMUtils.getCSSValuesForProperty(name));
}
Sebastian
Assignee | ||
Comment 1•8 years ago
|
||
Still missing calc().
Assignee | ||
Updated•7 years ago
|
Assignee: nobody → ttromey
Comment hidden (mozreview-request) |
Assignee | ||
Comment 3•7 years ago
|
||
Forgot to update the database, again.
Comment hidden (mozreview-request) |
Comment 5•7 years ago
|
||
mozreview-review |
Comment on attachment 8942964 [details]
Bug 1255402 - fix getCSSValuesForProperty for object-position and perspective-origin;
https://reviewboard.mozilla.org/r/213236/#review219186
Attachment #8942964 -
Flags: review?(cam) → review+
Pushed by ttromey@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/34c24c0414fa
fix getCSSValuesForProperty for object-position and perspective-origin; r=heycam
Comment 7•7 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 7 years ago
status-firefox59:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla59
Reporter | ||
Comment 8•7 years ago
|
||
Works for me in 59.0a1 (2018-01-18). Thanks Tom!
Sebastian
Status: RESOLVED → VERIFIED
Updated•6 years ago
|
status-firefox48:
affected → ---
You need to log in
before you can comment on or make changes to this bug.
Description
•