summaryrefslogtreecommitdiffstats
path: root/devtools/client/responsive/test/browser/doc_page_state.html
blob: fb4d2acf01e24a47ddeb23868aee844de32d7679 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!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>