haikuwebkit/LayoutTests/fast/media/media-query-non-ASCII-case-...

10 lines
435 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<meta charset="utf-8">
<script src="../../resources/js-test-pre.js"></script>
<script>
description("Test media queries to make sure only ASCII case is folded, and other non-ASCII case folding is not performed.");
shouldBeTrue("matchMedia('screen').matches");
shouldBeTrue("matchMedia('SCREEN').matches");
shouldBeFalse("matchMedia('ſcreen').matches");
</script>
<script src="../../resources/js-test-post.js"></script>