blob: 1613f4998a0056df23d015bf8ad17fb2faa391a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!doctype html>
<body style="mask: url(#marker)">
<svg>
<marker id="marker">
<rect width="10" height="10" fill="yellow"/>
</marker>
<path d="M50,50h100" marker-start="url(#marker1)"/>
</svg>
</body>
<script>
document.documentElement.offsetTop;
document.documentElement.style.display = 'none';
document.documentElement.offsetTop;
</script>
|