Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | /**
* A 7 standard viewport-azonosító, amit a `DyE2E_StandardViewportAudit` preset
* fan-out-tal végigjár. Konkrét `width`/`height`/`deviceScaleFactor` a
* `STANDARD_VIEWPORT_CATALOG` const-ban.
*/
export enum DyE2E_StandardViewport_Type {
mobileS = 'mobile-s', // 320 × 568 — iPhone SE
mobileM = 'mobile-m', // 375 × 667 — iPhone 12 mini
mobileL = 'mobile-l', // 414 × 896 — iPhone 11 Pro Max
tabletPortrait = 'tablet-p', // 768 × 1024 — iPad portrait
tabletLandscape = 'tablet-l', // 1024 × 768 — iPad landscape
desktop = 'desktop', // 1440 × 900 — Standard
desktopWide = 'desktop-wide', // 1920 × 1080 — Full HD
}
|