Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/testing/web-platform/tests/svg/types/scripted/SVGGraphicsElement.svg
<?xml version="1.0" encoding="UTF-8"?>
<title>SVGGraphicsElement</title>
<metadata>
</metadata>
<h:script src="/resources/testharness.js"/>
<h:script src="/resources/testharnessreport.js"/>
<script><![CDATA[
var el = document.createElementNS("http://www.w3.org/2000/svg", "rect");
test(function() {
assert_true(el.getBBox() instanceof SVGRect);
}, 'getBBox() returns instance of SVGRect');
test(function() {
assert_true(el.getCTM() instanceof SVGMatrix);
}, 'getCTM() returns instance of SVGMatrix');
test(function() {
assert_true(el.getScreenCTM() instanceof SVGMatrix);
}, 'getScreenCTM() returns instance of SVGMatrix');
]]></script>
</svg>