mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
11 lines
203 B
HTML
11 lines
203 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
p { --variable: value; transition: 1s --variable; }
|
|
</style>
|
|
<p>Hello.</p>
|
|
<script>
|
|
window.onload = function() {
|
|
document.querySelector("p").style.color = "green";
|
|
};
|
|
</script>
|