Files
2018-02-02 04:16:08 -05:00

17 lines
287 B
HTML

<!doctype html>
<html>
<head>
<title>Page State Test</title>
<style>
body {
height: 100vh;
background: red;
}
body.modified {
background: green;
}
</style>
</head>
<body onclick="this.classList.add('modified')"/>
</html>