chromium/third_party/blink/web_tests/inspector-protocol/css/resources/media-queries.css

@import "imported-media-queries.css" screen and
(min-width: 10px) and (max-height: 4000px);
@import "imported-media-queries.css";
@import "imported-media-queries.css" (orientation: landscape), handheld and (max-resolution: 3dppx);

@media screen and (min-width: 10px) and and {}

@media screen and (min-resolution: 2dppx) {
    @media handheld and (min-width: 20em), screen and (min-width: 20em) {
        body {
            border: 1px solid black;
        }
    }

    @media all and (orientation: portrait) {
        div {
            color: blue;
        }
    }
}

@media (max-width: 100px), (max-width: /* comment inside */ 72em) {
    @media all and (min-monochrome: 8) {
        p {
            margin: 1px;
        }
    }
}

@media (]) {
}