Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /svg/pservers/parsing/stop-opacity-valid.svg - WPT Dashboard Interop Dashboard
<?xml version="1.0" encoding="UTF-8"?>
width="800px" height="800px">
<title>SVG Paint Servers: parsing stop-opacity with valid values</title>
<metadata>
<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>