File tree 3 files changed +80
-7
lines changed
3 files changed +80
-7
lines changed Original file line number Diff line number Diff line change 5
5
NAMESPACE_REPLACE_REGEX ,
6
6
HTML_LOWER_CASE ,
7
7
HTML_ENUMERATED ,
8
- SVG_CAMEL_CASE ,
8
+ SVG_KEBAB_CASE ,
9
9
createComponent
10
10
} from './lib/util.js' ;
11
11
import { options , h , Fragment } from 'preact' ;
@@ -631,7 +631,7 @@ function _renderToString(
631
631
// serialize boolean aria-xyz or enumerated attribute values as strings
632
632
v = v + EMPTY_STR ;
633
633
} else if ( isSvgMode ) {
634
- if ( SVG_CAMEL_CASE . test ( name ) ) {
634
+ if ( SVG_KEBAB_CASE . has ( name ) ) {
635
635
name =
636
636
name === 'panose1'
637
637
? 'panose-1'
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ export const VOID_ELEMENTS = new Set([
18
18
] ) ;
19
19
export const UNSAFE_NAME = / [ \s \n \\ / = ' " \0 < > ] / ;
20
20
export const NAMESPACE_REPLACE_REGEX = / ^ ( x l i n k | x m l n s | x m l ) ( [ A - Z ] ) / ;
21
-
22
21
export const HTML_LOWER_CASE = new Set ( [
23
22
'accessKey' ,
24
23
'accessKeyLabel' ,
@@ -64,8 +63,82 @@ export const HTML_LOWER_CASE = new Set([
64
63
'itemID' ,
65
64
'itemRef'
66
65
] ) ;
67
-
68
- export const SVG_CAMEL_CASE = / ^ a c | ^ a l i | a r a b i c | b a s e l | c a p | c l i p P a t h $ | c l i p R u l e $ | c o l o r | d o m i n a n t | e n a b l e | f i l l | f l o o d | f o n t | g l y p h [ ^ R ] | h o r i z | i m a g e | l e t t e r | l i g h t i n g | m a r k e r [ ^ W U H ] | o v e r l i n e | p a n o s e | p o i n t e | p a i n t | r e n d e r i n g | s h a p e | s t o p | s t r i k e t h r o u g h | s t r o k e | t e x t [ ^ L ] | t r a n s f o r m | u n d e r l i n e | u n i c o d e | u n i t s | ^ v [ ^ i ] | ^ w | ^ x H / ;
66
+ export const SVG_KEBAB_CASE = new Set ( [
67
+ 'accentHeight' ,
68
+ 'accumulate' ,
69
+ 'alignmentBaseline' ,
70
+ 'arabicForm' ,
71
+ 'baselineShift' ,
72
+ 'capHeight' ,
73
+ 'clipPath' ,
74
+ 'clipRule' ,
75
+ 'colorInterpolation' ,
76
+ 'colorInterpolationFilters' ,
77
+ 'colorProfile' ,
78
+ 'colorRendering' ,
79
+ 'dominantBaseline' ,
80
+ 'enableBackground' ,
81
+ 'fillOpacity' ,
82
+ 'fillRule' ,
83
+ 'floodColor' ,
84
+ 'floodOpacity' ,
85
+ 'fontFamily' ,
86
+ 'fontSize' ,
87
+ 'fontSizeAdjust' ,
88
+ 'fontStretch' ,
89
+ 'fontStyle' ,
90
+ 'fontVariant' ,
91
+ 'fontWeight' ,
92
+ 'glyphName' ,
93
+ 'glyphOrientationHorizontal' ,
94
+ 'glyphOrientationVertical' ,
95
+ 'horizAdvX' ,
96
+ 'horizOriginX' ,
97
+ 'imageRendering' ,
98
+ 'letterSpacing' ,
99
+ 'lightingColor' ,
100
+ 'markerEnd' ,
101
+ 'markerMid' ,
102
+ 'markerStart' ,
103
+ 'overlinePosition' ,
104
+ 'overlineThickness' ,
105
+ 'paintOrder' ,
106
+ 'panose1' ,
107
+ 'pointerEvents' ,
108
+ 'renderingIntent' ,
109
+ 'shapeRendering' ,
110
+ 'stopColor' ,
111
+ 'stopOpacity' ,
112
+ 'strikethroughPosition' ,
113
+ 'strikethroughThickness' ,
114
+ 'strokeDasharray' ,
115
+ 'strokeDashoffset' ,
116
+ 'strokeLinecap' ,
117
+ 'strokeLinejoin' ,
118
+ 'strokeMiterlimit' ,
119
+ 'strokeOpacity' ,
120
+ 'strokeWidth' ,
121
+ 'textAnchor' ,
122
+ 'textDecoration' ,
123
+ 'textRendering' ,
124
+ 'transformOrigin' ,
125
+ 'underlinePosition' ,
126
+ 'underlineThickness' ,
127
+ 'unicodeBidi' ,
128
+ 'unicodeRange' ,
129
+ 'unitsPerEm' ,
130
+ 'vAlphabetic' ,
131
+ 'vectorEffect' ,
132
+ 'vertAdvY' ,
133
+ 'vertOriginX' ,
134
+ 'vertOriginY' ,
135
+ 'vHanging' ,
136
+ 'vIdeographic' ,
137
+ 'vMathematical' ,
138
+ 'wordSpacing' ,
139
+ 'writingMode' ,
140
+ 'xHeight'
141
+ ] ) ;
69
142
70
143
// Boolean DOM properties that translate to enumerated ('true'/'false') attributes
71
144
export const HTML_ENUMERATED = new Set ( [ 'draggable' , 'spellcheck' ] ) ;
Original file line number Diff line number Diff line change 8
8
UNSAFE_NAME ,
9
9
VOID_ELEMENTS ,
10
10
NAMESPACE_REPLACE_REGEX ,
11
- SVG_CAMEL_CASE ,
11
+ SVG_KEBAB_CASE ,
12
12
HTML_LOWER_CASE ,
13
13
getContext
14
14
} from './lib/util.js' ;
@@ -252,7 +252,7 @@ function _renderToStringPretty(
252
252
} else if ( NAMESPACE_REPLACE_REGEX . test ( name ) ) {
253
253
name = name . replace ( NAMESPACE_REPLACE_REGEX , '$1:$2' ) . toLowerCase ( ) ;
254
254
} else if ( isSvgMode ) {
255
- if ( SVG_CAMEL_CASE . test ( name ) ) {
255
+ if ( SVG_KEBAB_CASE . has ( name ) ) {
256
256
name =
257
257
name === 'panose1'
258
258
? 'panose-1'
You can’t perform that action at this time.
0 commit comments