chrome-only-media-queries.js (1062B)
1 const CHROME_ONLY_TOGGLES = [ 2 "-moz-is-glyph", 3 "-moz-in-android-pip-mode", 4 "-moz-print-preview", 5 "-moz-overlay-scrollbars", 6 "-moz-mac-big-sur-theme", 7 "-moz-mac-tahoe-theme", 8 "-moz-menubar-drag", 9 "-moz-windows-accent-color-in-titlebar", 10 "-moz-swipe-animation-enabled", 11 "-moz-gtk-csd-available", 12 "-moz-gtk-csd-transparency-available", 13 "-moz-gtk-csd-minimize-button", 14 "-moz-gtk-csd-maximize-button", 15 "-moz-gtk-csd-close-button", 16 "-moz-gtk-csd-reversed-placement", 17 "-moz-panel-animations", 18 "-moz-native-theme", 19 ]; 20 21 // Non-parseable queries can be tested directly in 22 // `test_chrome_only_media_queries.html`. 23 const CHROME_ONLY_QUERIES = [ 24 "(-moz-platform: linux)", 25 "(-moz-platform: windows)", 26 "(-moz-platform: macos)", 27 "(-moz-platform: android)", 28 "(-moz-content-prefers-color-scheme: dark)", 29 "(-moz-content-prefers-color-scheme: light)", 30 "(-moz-gtk-theme-family: unknown)", 31 "(-moz-gtk-theme-family: adwaita)", 32 "(-moz-gtk-theme-family: breeze)", 33 "(-moz-gtk-theme-family: yaru)", 34 "(forced-colors: requested)", 35 ];