diff options
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/high-contrast/prefers-contrast-001.html | 23 |
1 files changed, 23 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..813546efb4 --- /dev/null +++ b/layout/reftests/high-contrast/prefers-contrast-001.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>low, fixed, and high should all evaluat to true in the +boolean context.</title> + +<style type="text/css"> + div { + width: 100px; + height: 100px; + } + @media(prefers-contrast) { + div { + outline: 2px solid black; + } + } +</style> +</head> +<body> + <div></div> +</body> +</html> |