mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-02 22:08:40 +09:00
Issue #1853 - Follow-up: Add missing end of array marker to scrollbar width keyword table
This prevents the parser from accepting values outside the keyword table.
This commit is contained in:
parent
009fb3146f
commit
317b7dec08
1 changed files with 2 additions and 1 deletions
|
|
@ -2011,7 +2011,8 @@ const KTableEntry nsCSSProps::kScrollSnapTypeKTable[] = {
|
|||
const KTableEntry nsCSSProps::kScrollbarWidthKTable[] = {
|
||||
{ eCSSKeyword_auto, StyleScrollbarWidth::Auto },
|
||||
{ eCSSKeyword_thin, StyleScrollbarWidth::Thin },
|
||||
{ eCSSKeyword_none, StyleScrollbarWidth::None }
|
||||
{ eCSSKeyword_none, StyleScrollbarWidth::None },
|
||||
{ eCSSKeyword_UNKNOWN, -1 }
|
||||
};
|
||||
|
||||
const KTableEntry nsCSSProps::kStackSizingKTable[] = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue