mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
cb4754240f
--HG-- extra : rebase_source : cbbd5a5679af57f97122082213f44491431d87e3
18 lines
321 B
HTML
18 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>
|