Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

SVG Preview (Scaled)

Preview of https://raw.githubusercontent.com/mozilla-firefox/firefox/main/testing/web-platform/tests/svg/geometry/parsing/height-attribute-valid.svg
<?xml version="1.0" encoding="UTF-8"?>
width="800px" height="800px">
<title>SVG Geometry Properties: parsing the height presentation attribute with valid values</title>
<metadata>
<h:meta name="assert" content="the height presentation attribute supports '&lt;length-percentage [0,inf]&gt; | &lt;number [0,inf]&gt;'."/>
</metadata>
<rect id="target"/>
<h:script src="/resources/testharness.js"/>
<h:script src="/resources/testharnessreport.js"/>
<h:script src="support/attribute-testcommon.js"/>
<script><![CDATA[
test_valid_attribute_value("height", "0", 0);
test_valid_attribute_value("height", "5", 5);
test_valid_attribute_value("height", "5px", 5);
test_valid_attribute_value("height", "5%", 40, "40px");
]]></script>
</svg>