mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
19 lines
220 B
HTML
19 lines
220 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
body.hello {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
a
|
|
<script>
|
|
setTimeout(function() {
|
|
document.body.classList.add('hello');
|
|
}, 0);
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|