summaryrefslogtreecommitdiffstats
path: root/layout/reftests/high-contrast/prefers-contrast-002.html
blob: 56bd8329bb8bab3fb040b70ec49bbc8ec000382e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>high contrast mode should cause a black box to be drawn</title>

<style type="text/css">
    div {
        width: 100px;
        height: 100px;
    }
    @media (prefers-contrast: more) {
        div {
            outline: 2px solid #000000;
        }
    }
</style>
</head>
<body>
  <div></div>
</body>
</html>