mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 06:48:38 +09:00
Issue #2486 - Part 3: Fix serialization of layer statement rule
This commit is contained in:
parent
9630698d31
commit
db1c2c39b0
1 changed files with 1 additions and 2 deletions
|
|
@ -3445,9 +3445,8 @@ CSSLayerStatementRule::GetCssTextImpl(nsAString& aCssText) const
|
|||
aCssText.AssignLiteral("@layer ");
|
||||
for (uint32_t i = 0, i_end = mNameList.Length(); i != i_end; ++i) {
|
||||
aCssText.Append(mNameList[i]);
|
||||
aCssText.Append(',');
|
||||
if (i != i_end - 1) {
|
||||
aCssText.Append(' ');
|
||||
aCssText.AppendLiteral(", ");
|
||||
}
|
||||
}
|
||||
aCssText.Append(';');
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue