Closed
Bug 1308239
Opened 8 years ago
Closed 8 years ago
Remove CSS pref layout.css.masking.enabled (for mask-type property)
Categories
(Core :: Layout, defect, P3)
Core
Layout
Tracking
()
RESOLVED
FIXED
mozilla52
Tracking | Status | |
---|---|---|
firefox52 | --- | fixed |
People
(Reporter: bmo, Assigned: bmo)
References
(Blocks 1 open bug)
Details
(Keywords: dev-doc-complete)
Attachments
(1 file)
mask-type prop support for SVG <mask> element was enabled since 2012. It seems that the corresponding preference control is no longer needed now.
Comment hidden (mozreview-request) |
Assignee | ||
Comment 2•8 years ago
|
||
Assignee: nobody → aschen
Status: NEW → ASSIGNED
Assignee | ||
Updated•8 years ago
|
Attachment #8798481 -
Flags: review?(cam)
Assignee | ||
Updated•8 years ago
|
Priority: -- → P3
Comment 3•8 years ago
|
||
mozreview-review |
Comment on attachment 8798481 [details]
Bug 1308239 : Remove CSS mask-type pref layout.css.masking.enabled.
https://reviewboard.mozilla.org/r/83964/#review82998
Thanks, this pref has been enabled by default since 2014, so is overdue for removal.
::: layout/style/test/property_database.js
(Diff revision 1)
> -if (IsCSSPropertyPrefEnabled("layout.css.masking.enabled")) {
> - gCSSProperties["mask-type"] = {
> +gCSSProperties["mask-type"] = {
> - domProp: "maskType",
> + domProp: "maskType",
> - inherited: false,
> + inherited: false,
> - type: CSS_TYPE_LONGHAND,
> + type: CSS_TYPE_LONGHAND,
> - initial_values: [ "luminance" ],
> + initial_values: [ "luminance" ],
> - other_values: [ "alpha" ],
> + other_values: [ "alpha" ],
> - invalid_values: []
> + invalid_values: []
> - };
> +};
> -}
Please move this definition up to the main statement that assigns to gCSSProperties.
Attachment #8798481 -
Flags: review?(cam) → review+
Comment hidden (mozreview-request) |
Assignee | ||
Comment 5•8 years ago
|
||
mozreview-review-reply |
Comment on attachment 8798481 [details]
Bug 1308239 : Remove CSS mask-type pref layout.css.masking.enabled.
https://reviewboard.mozilla.org/r/83964/#review82998
> Please move this definition up to the main statement that assigns to gCSSProperties.
Updated, thanks for pointing it out. :)
Assignee | ||
Updated•8 years ago
|
Keywords: checkin-needed
Assignee | ||
Comment 6•8 years ago
|
||
Need an update on MDN page: https://developer.mozilla.org/en-US/docs/Web/CSS/mask-type
Keywords: dev-doc-needed
Pushed by cbook@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/c44ee9cb3ba8
Remove CSS mask-type pref layout.css.masking.enabled. r=heycam
Keywords: checkin-needed
Comment 8•8 years ago
|
||
(In reply to Astley Chen [:astley] (UTC+8) from comment #6)
> Need an update on MDN page:
> https://developer.mozilla.org/en-US/docs/Web/CSS/mask-type
Updated.
Keywords: dev-doc-needed
Updated•8 years ago
|
Keywords: dev-doc-complete
Comment 9•8 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 8 years ago
status-firefox52:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla52
Updated•8 years ago
|
Blocks: css-masking-1
Summary: Remove CSS pref layout.css.masking.enabled → Remove CSS pref layout.css.masking.enabled (for mask-type property)
Depends on: 1308904
You need to log in
before you can comment on or make changes to this bug.
Description
•