chromium/third_party/blink/web_tests/fast/media/mq-resolution-pagezoom.html

<!DOCTYPE html>
<script>
  if (window.testRunner) {
    testRunner.zoomPageIn();
    testRunner.zoomPageIn();
  }
</script>
<style>
    body {
        background: red;
    }
    @media (min-resolution: 1.44dppx) and (max-resolution: 1.441dppx) {
        body {
            background: green;
        }
    }
    @media (-webkit-min-device-pixel-ratio: 1.44) and (-webkit-max-device-pixel-ratio: 1.441) {
        body {
            color: blue;
        }
    }
</style>
<p>
    This page should have 144% full page zoom, so the background should go green.
</p>