diff options
Diffstat (limited to 'testing/web-platform/tests/svg/pservers/parsing/stop-opacity-valid.svg')
-rw-r--r-- | testing/web-platform/tests/svg/pservers/parsing/stop-opacity-valid.svg | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/web-platform/tests/svg/pservers/parsing/stop-opacity-valid.svg b/testing/web-platform/tests/svg/pservers/parsing/stop-opacity-valid.svg new file mode 100644 index 0000000000..28b60038a4 --- /dev/null +++ b/testing/web-platform/tests/svg/pservers/parsing/stop-opacity-valid.svg @@ -0,0 +1,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> |