summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/svg/pservers/parsing/stop-opacity-valid.svg
blob: 28b60038a4d5707ae45b5e6e7dbc7f806717eaf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg"
     xmlns:h="http://www.w3.org/1999/xhtml"
     width="800px" height="800px">
  <title>SVG Paint Servers: parsing stop-opacity with valid values</title>
  <metadata>
    <h:link rel="help" href="https://svgwg.org/svg2-draft/pservers.html#StopOpacityProperty"/>
    <h:meta name="assert" content="stop-opacity supports the full grammar 'alpha-value'."/>
  </metadata>
  <g id="target"></g>
  <h:script src="/resources/testharness.js"/>
  <h:script src="/resources/testharnessreport.js"/>
  <h:script src="/css/support/parsing-testcommon.js"/>
  <script><![CDATA[

test_valid_value("stop-opacity", "-1");
test_valid_value("stop-opacity", "0.5");
test_valid_value("stop-opacity", "3");
test_valid_value("stop-opacity", "-100%", "-1");
test_valid_value("stop-opacity", "50%", "0.5");
test_valid_value("stop-opacity", "300%", "3");

  ]]></script>
</svg>