36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
<!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>
|