summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/mediaqueries/mq-calc-006.html
blob: 8f3ac37b057d0c9e53851e76d7144c602c02bb08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<link rel="author" title="Xiaocheng Hu" href="xiaochengh@chromium.org">
<link rel="help" href="http://www.w3.org/TR/css3-values/#calc-notation">
<link rel="help" href="https://www.w3.org/TR/css3-mediaqueries/#units">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="The 'in' unit used in calc is not mistaken as 'px'.">
<style>
p { font-size: 16px; }
#target {
  width: 100px;
  height: 100px;
  background-color: green;
}
@media (min-width: calc(100in)) {
  /* Should not be selected */
  #target { background-color: red }
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div id=target></div>