Skip to content

Commit 4fa1d39

Browse files
authored
fix: Reverse Lumia 550 and Lumia 550 Landscape viewports (#34548)
1 parent 1936cfa commit 4fa1d39

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

packages/playwright-core/src/server/deviceDescriptorsSource.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1122,8 +1122,8 @@
11221122
"Microsoft Lumia 550": {
11231123
"userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 550) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.27 Mobile Safari/537.36 Edge/14.14263",
11241124
"viewport": {
1125-
"width": 640,
1126-
"height": 360
1125+
"width": 360,
1126+
"height": 640
11271127
},
11281128
"deviceScaleFactor": 2,
11291129
"isMobile": true,
@@ -1133,8 +1133,8 @@
11331133
"Microsoft Lumia 550 landscape": {
11341134
"userAgent": "Mozilla/5.0 (Windows Phone 10.0; Android 4.2.1; Microsoft; Lumia 550) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.27 Mobile Safari/537.36 Edge/14.14263",
11351135
"viewport": {
1136-
"width": 360,
1137-
"height": 640
1136+
"width": 640,
1137+
"height": 360
11381138
},
11391139
"deviceScaleFactor": 2,
11401140
"isMobile": true,

tests/library/browsercontext-viewport.spec.ts

+9
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import { devices } from '@playwright/test';
1919
import { contextTest as it, expect } from '../config/browserTest';
2020
import { browserTest } from '../config/browserTest';
2121
import { verifyViewport } from '../config/utils';
22+
import { deviceDescriptors } from 'packages/playwright-core/lib/server/deviceDescriptors';
2223

2324
it('should get the proper default viewport size', async ({ page, server }) => {
2425
await verifyViewport(page, 1280, 720);
@@ -46,6 +47,14 @@ it('should return correct outerWidth and outerHeight', async ({ page }) => {
4647
expect(size.outerHeight >= size.innerHeight).toBeTruthy();
4748
});
4849

50+
it('landscape viewport should have width larger than height', async () => {
51+
for (const device in deviceDescriptors) {
52+
const configuration = deviceDescriptors[device];
53+
if (device.includes('landscape') || device.includes('Landscape'))
54+
expect(configuration.viewport.width).toBeGreaterThan(configuration.viewport.height);
55+
}
56+
});
57+
4958
it('should emulate device width', async ({ page, server }) => {
5059
expect(page.viewportSize()).toEqual({ width: 1280, height: 720 });
5160
await page.setViewportSize({ width: 300, height: 300 });

0 commit comments

Comments
 (0)