summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/computed/test/doc_media_queries.html
blob: 819e1ea7aaafe660809ea68c0b8a7dba044fcc17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html>
<head>
  <title>test</title>
  <style>
    div {
      width: 1000px;
      height: 100px;
      background-color: #f00;
    }

    @media screen and (min-width: 1px) {
      div {
        width: 200px;
      }
    }
  </style>
</head>
<body>
<div></div>
</body>
</html>