mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-24 05:13:07 +09:00
17 lines
321 B
HTML
17 lines
321 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body > div { color: green; }
|
|
.toremove { color: red; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="toremove">
|
|
This should be green
|
|
</div>
|
|
<script>
|
|
document.body.firstElementChild.classList.remove("toremove");
|
|
</script>
|
|
</body>
|
|
</html>
|