Index: Source/web/tests/data/display_mode.html |
diff --git a/Source/web/tests/data/display_mode.html b/Source/web/tests/data/display_mode.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..13f0a30058a362fa332a64ff16f99e7e6c712414 |
--- /dev/null |
+++ b/Source/web/tests/data/display_mode.html |
@@ -0,0 +1,22 @@ |
+<!doctype html> |
+<html> |
+<style> |
+@media all and (display-mode: minimal-ui) { |
+ #regular { |
+ display: none; |
+ } |
+} |
+@media not all and (display-mode: minimal-ui) { |
+ #minimal { |
+ display: none; |
+ } |
+} |
+</style> |
+<body> |
+ |
+<div id="minimal">minimal-ui</div> |
+ |
+<div id="regular">regular-ui</div> |
+ |
+</body> |
+</html> |