summaryrefslogtreecommitdiffstats
path: root/layout/reftests/css-mediaqueries/mq_prefers_color_scheme.html
blob: 4755fd803eb4ff5ca91b5d8106c977bcc8cdd912 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!doctype html>
<meta charset="utf-8">
<html>
<title>prefers-color-scheme is supported</title>
<style>
div {
  width: 100px;
  height: 100px;
}

@media (prefers-color-scheme) {
  div { background-color: green; }
}
</style>
<div></div>
</html>