summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-values/support/mixed-units-11.html
blob: 1d63c899d847bd2150ce94f884887cd2cf035261 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
  <head>
    <style>
      body {
        background: rgb(0, 0, 255);
      }
      @media (width: calc(8000vh * 1vw / 1em * 8px / 40vh)) {
        body {
          background: rgb(255, 165, 0);
        }
      }
    </style>
  </head>
  <body></body>
</html>