mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-15 08:53:07 +09:00
moebius#90: CSS - implement text-justify property
This commit is contained in:
parent
5677db4b6e
commit
1f262f0d2b
26 changed files with 312 additions and 9 deletions
|
|
@ -3064,6 +3064,7 @@ exports.CSS_PROPERTIES = {
|
|||
"text-emphasis-style",
|
||||
"-webkit-text-fill-color",
|
||||
"text-indent",
|
||||
"text-justify",
|
||||
"text-orientation",
|
||||
"text-overflow",
|
||||
"text-rendering",
|
||||
|
|
@ -3240,6 +3241,7 @@ exports.CSS_PROPERTIES = {
|
|||
"dialog",
|
||||
"difference",
|
||||
"disabled",
|
||||
"distribute",
|
||||
"dotted",
|
||||
"double",
|
||||
"drag",
|
||||
|
|
@ -3299,6 +3301,8 @@ exports.CSS_PROPERTIES = {
|
|||
"inline-table",
|
||||
"inset",
|
||||
"inside",
|
||||
"inter-character",
|
||||
"inter-word",
|
||||
"intersect",
|
||||
"isolate",
|
||||
"italic",
|
||||
|
|
@ -8865,6 +8869,23 @@ exports.CSS_PROPERTIES = {
|
|||
"unset"
|
||||
]
|
||||
},
|
||||
"text-justify": {
|
||||
"isInherited": true,
|
||||
"subproperties": [
|
||||
"text-justify"
|
||||
],
|
||||
"supports": [],
|
||||
"values": [
|
||||
"auto",
|
||||
"distribute",
|
||||
"inherit",
|
||||
"initial",
|
||||
"inter-character",
|
||||
"inter-word",
|
||||
"none",
|
||||
"unset"
|
||||
]
|
||||
},
|
||||
"text-orientation": {
|
||||
"isInherited": true,
|
||||
"subproperties": [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue