blob: 813546efb4fb01724034d97c6022b132792260ae (
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>low, fixed, and high should all evaluat to true in the
boolean context.</title>
<style type="text/css">
div {
width: 100px;
height: 100px;
}
@media(prefers-contrast) {
div {
outline: 2px solid black;
}
}
</style>
</head>
<body>
<div></div>
</body>
</html>
|