blob: 2974e5ec0d8b4dcb328e63f8e7edbc0adad16382 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE HTML>
<html>
<head>
<script>
window.addEventListener('load', () => {
const svg = document.createElementNS('http://www.w3.org/2000/svg', 'style')
document.documentElement.appendChild(svg)
svg.textContent = `
HTML { column-rule-color: rgba( 4294967295%, 0%, 0%, 0% );
inset-block: 4294967295% 0%;
min-block-size: 4294967295%;
position: fixed;
aspect-ratio: 4294967295 / 4294967295;`
})
</script>
</head>
</html>
|