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