OLD | NEW |
1 PASS matchMedia("(resolution: " + initialResolution + "dppx)").matches is true | 1 PASS matchMedia("(resolution: " + initialResolution + "dppx)").matches is true |
2 PASS matchMedia("(-webkit-device-pixel-ratio: " + initialResolution + ")").match
es 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 | 3 PASS matchMedia("(resolution: " + initialResolution * 1.2 + "dppx)").matches is
true |
4 PASS matchMedia("(-webkit-device-pixel-ratio: " + initialResolution * 1.2 + ")")
.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 | 5 PASS matchMedia("(resolution: " + initialResolution / 1.2 + "dppx)").matches is
true |
6 PASS matchMedia("(-webkit-device-pixel-ratio: " + initialResolution / 1.2 + ")")
.matches is true | 6 PASS matchMedia("(-webkit-device-pixel-ratio: " + initialResolution / 1.2 + ")")
.matches is true |
| 7 PASS successfullyParsed is true |
7 | 8 |
| 9 TEST COMPLETE |
| 10 |
OLD | NEW |