mirror of
https://github.com/servo/servo
synced 2026-04-28 10:27:40 +02:00
22 lines
758 B
HTML
22 lines
758 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSSOM View Module test:MediaQueryList</title>
|
|
<link href="mailto:tidelgl@gmail.com" rel="author" title="unbug">
|
|
<link href="http://www.w3.org/TR/cssom-view/#the-mediaquerylist-interface" rel="help">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<style type="text/css">
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>This case tests the MediaQueryList
|
|
</p><p>The test passes if the value is 1280/800</p>
|
|
<div id="log"></div>
|
|
<script>
|
|
test(function(){
|
|
assert_equals(window.matchMedia('(device-aspect-ratio: 1280/800)').matches, true, "Expected value for device-aspect-ratio is 1280/800");
|
|
},'matchMedia');
|
|
</script>
|
|
|
|
|
|
</body></html> |