summaryrefslogtreecommitdiffstats
path: root/devtools/client/inspector/rules/test/doc_media_queries.html
blob: 1adb8bc7a731520e8590b36f03eefb8fce4b2d97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head>
  <title>test</title>
  <script type="application/javascript;version=1.7">

  </script>
  <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>