about summary refs log tree commit diff stats
path: root/test/layout/media-query.html
diff options
context:
space:
mode:
Diffstat (limited to 'test/layout/media-query.html')
-rw-r--r--test/layout/media-query.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/layout/media-query.html b/test/layout/media-query.html
new file mode 100644
index 00000000..1d09e25f
--- /dev/null
+++ b/test/layout/media-query.html
@@ -0,0 +1,9 @@
+<style>
+@media (WiDtH >= 1px) and (HeiGhT < 10000px) {
+	#red { color: red }
+}
+@media (width >= 1px 2px) {
+	#red { color: blue }
+}
+</style>
+<div id=red>red</div>