repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
Source
/
web
/
tests
/
data
/
display_mode.html
blob
13f0a30058a362fa332a64ff16f99e7e6c712414
1
<!doctype
html
>
2
<html>
3
<style>
4
@media all and (display-mode: minimal-ui) {
5
#regular {
6
display: none;
7
}
8
}
9
@media not all and (display-mode: minimal-ui) {
10
#minimal {
11
display: none;
12
}
13
}
14
</style>
15
<body>
16
17
<div
id
=
"minimal"
>
minimal-ui
</div>
18
19
<div
id
=
"regular"
>
regular-ui
</div>
20
21
</body>
22
</html>