You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using getComputedStyle with browser service breaks tests, this is cause by the browser service proxying values, since getComputedStyle expects a HTMLElement and not a proxy it thows the following error:
Failed to execute 'getComputedStyle' on 'Window': parameter 1 is not of type 'Element'.
with the following code
let cssVar = getComputedStyle(this.window.document.documentElement).getPropertyValue( '--css-var', );
The text was updated successfully, but these errors were encountered:
Using
getComputedStyle
with browser service breaks tests, this is cause by the browser service proxying values, since getComputedStyle expects a HTMLElement and not a proxy it thows the following error:Failed to execute 'getComputedStyle' on 'Window': parameter 1 is not of type 'Element'.
with the following code
let cssVar = getComputedStyle(this.window.document.documentElement).getPropertyValue( '--css-var', );
The text was updated successfully, but these errors were encountered: