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:
daijro 2024-10-02 06:19:29 -05:00
parent 6681a958f4
commit 782a2157bd
2 changed files with 5 additions and 5 deletions

View file

@ -574,10 +574,10 @@ class PageTarget {
if ( if (
!this._viewportSize && !this._viewportSize &&
this._browserContext.defaultViewportSize && ( this._browserContext.defaultViewportSize && (
ChromeUtils.camouGetConfig("window.outerWidth") || ChromeUtils.camouGetInt("window.outerWidth") ||
ChromeUtils.camouGetConfig("window.outerHeight") || ChromeUtils.camouGetInt("window.outerHeight") ||
ChromeUtils.camouGetConfig("window.innerWidth") || ChromeUtils.camouGetInt("window.innerWidth") ||
ChromeUtils.camouGetConfig("window.innerHeight")) ChromeUtils.camouGetInt("window.innerHeight"))
) { ) {
return; return;
} }

View file

@ -1,2 +1,2 @@
version=130.0.1 version=130.0.1
release=beta.9 release=beta.10