blob: e9949b286d2e7e5847ed588d3778b900b40b943d [file] [log] [blame]
<!DOCTYPE html>
<style>
@media (max-width: 200px) {
body {
background: orange;
}
}
</style>
<script>
var mql = window.matchMedia('(max-width: 200px)');
mql.addListener(function (mql) {
});
</script>