blob: 8935619ebd28c014db4b7890c4731c19b86f3c60 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ -->
<html>
<body style="margin: 0px">
<embed src="black-border-rect.svg" style="display: block">
<script>
var width = location.search.substring(1).split("&");
var embedElem = document.getElementsByTagName('embed')[0];
embedElem.style.width = width + 'px';
</script>
</body>
</html>
|