summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/import-svg-01.html
blob: 2ea66f4666bff86d661367d07c35e8879d3f70c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html class="reftest-wait">
<head>
<script>
function setup() {
 var data =
 '<svg xmlns="http://www.w3.org/2000/svg" viewBox="-50 -100 50 100" width="100%" height="100%">' +
 '    <rect transform="rotate(180,0,0)" fill="red" x="-50" y="-50" width="100" height="100" />'+
 '    <rect fill="lime" x="-55" y="-55" width="110" height="110" />'+
 '</svg>';
 var drawing = document.getElementById("drawing");
 var parser = new DOMParser();
 var svg1 = document.importNode(parser.parseFromString(data, "text/xml").documentElement, true);
 drawing.appendChild(svg1);
 document.documentElement.className = "";
}
</script>
</head>
<body style="background-color: lime;" onload="setup()">
<div id="drawing">
</div>
</body>
</html>