Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/docs/ref-04-tags-and-attributes.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ There is also the React-specific attribute `dangerouslySetInnerHTML` ([more here

```
cx cy d dx dy fill fillOpacity fontFamily fontSize fx fy gradientTransform
gradientUnits markerEnd markerMid markerStart offset opacity
gradientUnits markerEnd markerMid markerStart maskUnits maskContentUnits offset opacity
patternContentUnits patternUnits points preserveAspectRatio r rx ry
spreadMethod stopColor stopOpacity stroke strokeDasharray strokeLinecap
strokeOpacity strokeWidth textAnchor transform version viewBox x1 x2 x y1 y2 y
Expand Down
4 changes: 4 additions & 0 deletions src/browser/ui/dom/SVGDOMPropertyConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ var SVGDOMPropertyConfig = {
markerEnd: MUST_USE_ATTRIBUTE,
markerMid: MUST_USE_ATTRIBUTE,
markerStart: MUST_USE_ATTRIBUTE,
maskUnits: MUST_USE_ATTRIBUTE,
maskContentUnits: MUST_USE_ATTRIBUTE,
offset: MUST_USE_ATTRIBUTE,
opacity: MUST_USE_ATTRIBUTE,
patternContentUnits: MUST_USE_ATTRIBUTE,
Expand Down Expand Up @@ -79,6 +81,8 @@ var SVGDOMPropertyConfig = {
markerEnd: 'marker-end',
markerMid: 'marker-mid',
markerStart: 'marker-start',
maskUnits: 'maskUnits',
maskContentUnits: 'maskContentUnits',
patternContentUnits: 'patternContentUnits',
patternUnits: 'patternUnits',
preserveAspectRatio: 'preserveAspectRatio',
Expand Down