mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
520 B
HTML
22 lines
520 B
HTML
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<link rel="stylesheet" type="text/css" href="svg-image-util.css" />
|
||
|
<script src="svg-image-util.js"></script>
|
||
|
<script>
|
||
|
function main() {
|
||
|
var svgParams = {
|
||
|
viewBox: [0, 0, 20, 40],
|
||
|
width : "20px",
|
||
|
meetOrSlice: "slice"
|
||
|
};
|
||
|
|
||
|
appendSVGArrayWithParams(svgParams, "embed");
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body onload="main()">
|
||
|
<!-- Body gets populated by script -->
|
||
|
</body>
|
||
|
</html>
|