chromium/third_party/blink/web_tests/external/wpt/css/css-page/resources/mq-frame-100px.html

<!DOCTYPE html>
<style>
body {
  margin: 0;
}
div {
  background: red;
}
@media (width: 100px) and (height: 100px) {
  div {
    background: green;
  }
}
</style>
<div style="height:100px;"></div>