diff options
Diffstat (limited to 'layout/reftests/high-contrast/prefers-contrast-001.html')
-rw-r--r-- | layout/reftests/high-contrast/prefers-contrast-001.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/layout/reftests/high-contrast/prefers-contrast-001.html b/layout/reftests/high-contrast/prefers-contrast-001.html new file mode 100644 index 0000000000..0e94012ed8 --- /dev/null +++ b/layout/reftests/high-contrast/prefers-contrast-001.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>low, fixed, and high should all evaluate to true in the boolean context.</title> +<style> + div { + width: 100px; + height: 100px; + } + @media(prefers-contrast) { + div { + outline: 2px solid black; + } + } +</style> +<div></div> |