Skip to content

Commit

Permalink
Testing with additionnal double quotes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mbodin committed Nov 30, 2023
1 parent 2394bf2 commit fc41690
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_jsx.re
Original file line number Diff line number Diff line change
Expand Up @@ -333,13 +333,13 @@ let svg = (
),
(
"fill_opacity float, circle",
[<circle cx=1 cy=2 r=3 fill_opacity=0.5 />],
[<circle cx="1" cy="2" r="3" fill_opacity="0.5" />],
[circle(~a=[a_cx((1., None)), a_cy((2., None)), a_r((3., None)), a_fill_opacity(0.5)], [])],
),
(
"fill_opacity percentage, rect",
[<rect x=1 y="2" width=3 height="4" fill_opacity="50%" />],
[rect(~a=[a_cx((1., None)), a_cy((2., None)), a_width((3., None)), a_height((4., None)), a_fill_opacity(0.5)], [])],
[<rect x="1" y="2" width="3" height="4" fill_opacity="50%" />],
[rect(~a=[a_x((1., None)), a_y((2., None)), a_width((3., None)), a_height((4., None)), a_fill_opacity(0.5)], [])],
),
(
"fill_rule nonzero",
Expand Down

0 comments on commit fc41690

Please sign in to comment.