Bug 1573725: turn on the pref for text-decoration-thickness on by default (in early-beta and earlier) r=dholbert

Differential Revision: https://phabricator.services.mozilla.com/D41883

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Charlie Marlow 2019-08-14 16:46:18 +00:00
parent 75ab192bc4
commit dea58fc0bb
3 changed files with 15 additions and 4 deletions

View File

@ -9989,6 +9989,20 @@ exports.CSS_PROPERTIES = {
"wavy"
]
},
"text-decoration-thickness": {
"isInherited": false,
"subproperties": [
"text-decoration-thickness"
],
"supports": [],
"values": [
"auto",
"inherit",
"initial",
"revert",
"unset"
]
},
"text-emphasis": {
"isInherited": true,
"subproperties": [

View File

@ -4062,7 +4062,7 @@
# text decoration thickness
- name: layout.css.text-decoration-thickness.enabled
type: bool
value: false
value: @IS_EARLY_BETA_OR_EARLIER@
mirror: always
# text decoration skip ink

View File

@ -7,9 +7,6 @@
<script src="/resources/testharnessreport.js"></script>
<script src="/css/support/parsing-testcommon.js"></script>
<script>
test_invalid_value("text-decoration", "auto");
test_invalid_value("text-decoration", "1px");
test_invalid_value("text-decoration", "double overline underline dotted");
test_invalid_value("text-decoration", "red line-through green");
test_invalid_value("text-decoration", "overline blue underline");