mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-10 15:42:04 -08:00
Juggler: fix Playwright default viewport
Fixes a bug that prevents Playwright's default viewport from loading. Caused by function not getting renamed when refactoring chromeutil.patch
This commit is contained in:
parent
6681a958f4
commit
782a2157bd
2 changed files with 5 additions and 5 deletions
|
|
@ -574,10 +574,10 @@ class PageTarget {
|
|||
if (
|
||||
!this._viewportSize &&
|
||||
this._browserContext.defaultViewportSize && (
|
||||
ChromeUtils.camouGetConfig("window.outerWidth") ||
|
||||
ChromeUtils.camouGetConfig("window.outerHeight") ||
|
||||
ChromeUtils.camouGetConfig("window.innerWidth") ||
|
||||
ChromeUtils.camouGetConfig("window.innerHeight"))
|
||||
ChromeUtils.camouGetInt("window.outerWidth") ||
|
||||
ChromeUtils.camouGetInt("window.outerHeight") ||
|
||||
ChromeUtils.camouGetInt("window.innerWidth") ||
|
||||
ChromeUtils.camouGetInt("window.innerHeight"))
|
||||
) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
version=130.0.1
|
||||
release=beta.9
|
||||
release=beta.10
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue