mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-25 16:59:01 +09:00
10 lines
274 B
HTML
10 lines
274 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<body style="transition-duration: 1ms"></body>
|
|
<script>
|
|
var body = document.body;
|
|
/* flush */ getComputedStyle(body, "").background;
|
|
body.style.background = 'url(none.png), repeat';
|
|
/* flush */ getComputedStyle(body, "").background;
|
|
</script>
|
|
</html>
|