mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 14:28:39 +09:00
17 lines
320 B
HTML
17 lines
320 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<script>
|
||
|
|
function tweak() {
|
||
|
|
document.getElementById("c").style.textShadow = "3px 3px gray";
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
<body onload="tweak()">
|
||
|
|
<div id="c">hello
|
||
|
|
<svg height="0">
|
||
|
|
<clipPath>
|
||
|
|
<path d=""/>
|
||
|
|
</clipPath>
|
||
|
|
</svg>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|