Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / zoom-media-queries-resolution-expected.txt
blob8be017ddb3a6d7492d5c1adfd98def5010d029c5
1 PASS matchMedia("(resolution: " + initialResolution + "dppx)").matches is true
2 PASS matchMedia("(-webkit-device-pixel-ratio: " + initialResolution + ")").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
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 PASS successfullyParsed is true
9 TEST COMPLETE