Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 PASS matchMedia("(resolution: " + initialResolution + "dppx)").matches is true | |
| 2 PASS matchMedia("(-webkit-device-pixel-ratio: " + initialResolution + ")").match es is true | |
| 3 PASS matchMedia("(resolution: " + initialResolution * 1.2 + "dppx)").matches is true | |
| 4 PASS matchMedia("(-webkit-device-pixel-ratio: " + initialResolution * 1.2 + ")") .matches is true | |
| 5 PASS matchMedia("(resolution: " + initialResolution / 1.2 + "dppx)").matches is true | |
| 6 PASS matchMedia("(-webkit-device-pixel-ratio: " + initialResolution / 1.2 + ")") .matches is true | |
| 7 | |
| OLD | NEW |