summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/appmanifest/display-member/display-member-media-feature-browser-manual.html
blob: 690b4ba521be0d5e3c90b6570b7c6725d3347cab (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
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<title>Test "browser" value of display member + media feature</title>
<link rel="help" href="https://w3c.github.io/manifest#display-member" />
<link rel="help" href="https://w3c.github.io/manifest/#dom-displaymodetype-browser" />
<link rel="help" href="https://w3c.github.io/manifest/#the-display-mode-media-feature" />
<link rel="manifest" href="resources/display-member-media-feature-browser.webmanifest" />
<script src="resources/display-member-media-feature-manual.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<h1>Testing support for "browser" value of display member + media feature</h1>
<style>
  .fail {
    background-color: red;
  }

  @media all and (display-mode: browser) {
    body {
      background-color: green;
    }
  }
</style>
<script>
const browser = matchMedia("(display-mode: browser)");

browser.onchange = () => {
  if (browser.matches) {
    document.body.classList.remove("fail");
  }
}

if (!browser.matches) {
  document.body.classList.add("fail");
}
</script>
<p>
  To pass, the background color must be green after installing.
</p>