Closed
Bug 1255384
Opened 9 years ago
Closed 7 years ago
inIDOMUtils.getCSSValuesForProperty() is missing keyword for counter-* properties
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 'counter-increment' and 'counter-reset' properties are missing the 'none' keyword.
Test case (to execute in Scratchpad):
let DOMUtils = Cc["@mozilla.org/inspector/dom-utils;1"].getService(Ci.inIDOMUtils);
let names = ["counter-increment", "counter-reset"];
for (let name of names) {
console.log(DOMUtils.getCSSValuesForProperty(name));
}
Sebastian
| Assignee | ||
Updated•7 years ago
|
Assignee: nobody → ttromey
| Comment hidden (mozreview-request) |
| Assignee | ||
Comment 2•7 years ago
|
||
Forgot to rebuild the db after the last change.
| Comment hidden (mozreview-request) |
Comment 4•7 years ago
|
||
| mozreview-review | ||
Comment on attachment 8941967 [details]
Bug 1255384 - fix getCSSValuesForProperty for counter-*;
https://reviewboard.mozilla.org/r/212152/#review218018
Attachment #8941967 -
Flags: review?(cam) → review+
| Assignee | ||
Comment 5•7 years ago
|
||
Rebasing.
| Comment hidden (mozreview-request) |
Pushed by ttromey@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/de312c964b3a
fix getCSSValuesForProperty for counter-*; r=heycam
Comment 8•7 years ago
|
||
| bugherder | ||
Status: NEW → RESOLVED
Closed: 7 years ago
status-firefox59:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla59
| Reporter | ||
Comment 9•7 years ago
|
||
Works fine for me on Nightly 2018-01-14. Again, thank you for the patch, Tom!
Sebastian
Status: RESOLVED → VERIFIED
Updated•7 years ago
|
status-firefox48:
affected → ---
You need to log in
before you can comment on or make changes to this bug.
Description
•