Chromium Code Reviews| Index: LayoutTests/fast/media/mq-size-include-scrollbars.html |
| diff --git a/LayoutTests/fast/media/mq-size-include-scrollbars.html b/LayoutTests/fast/media/mq-size-include-scrollbars.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f17c211cd93623849329709edf949c07035d8609 |
| --- /dev/null |
| +++ b/LayoutTests/fast/media/mq-size-include-scrollbars.html |
| @@ -0,0 +1,22 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<style> |
| + body { |
| + background: red; |
| + width: 1000px; |
| + height: 1000px; |
| + } |
| + @media (min-width: 795px) { |
| + body { |
| + background: green; |
| + } |
| + } |
| + @media (min-height: 595px) { |
| + body { |
| + color: blue; |
| + } |
| + } |
| +</style> |
| +<body> |
| +Should be blue on green if body's full size (including scrollbars) >= 795x595px. |
| +</body> |