Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / Source / web / tests / data / display_mode.html
blob13f0a30058a362fa332a64ff16f99e7e6c712414
1 <!doctype html>
2 <html>
3 <style>
4 @media all and (display-mode: minimal-ui) {
5 #regular {
6 display: none;
9 @media not all and (display-mode: minimal-ui) {
10 #minimal {
11 display: none;
14 </style>
15 <body>
17 <div id="minimal">minimal-ui</div>
19 <div id="regular">regular-ui</div>
21 </body>
22 </html>