blob: 7ac822394b507a121a63bba9fef7580d249e35ec [file] [log] [blame]
(async function(testRunner) {
var {page, session, dp} = await testRunner.startBlank(`
Tests that device emulation affects media rules, viewport meta tag, body dimensions and window.screen.
Emulating small device on a page without viewport set should take UA viewport settings into account.
`);
var DeviceEmulator = await testRunner.loadScript('../resources/device-emulator.js');
var deviceEmulator = new DeviceEmulator(testRunner, session);
await deviceEmulator.emulate(380, 420, 1);
var viewport = 'none';
testRunner.log(`Loading page with viewport=${viewport}`);
await session.navigate('../resources/device-emulation.html?' + viewport);
testRunner.log(await session.evaluate(`dumpMetrics(true)`));
testRunner.completeTest();
})