The oidc-client uses the incorrect way to set Iframe height and width. Iframe height and width are not controlled by CSS style properties but directly through width and height properties.
So this:
this._frame.style.width = 0;
this._frame.style.height = 0;
should be this:
this._frame.height = 0;
this._frame.width = 0;
The oidc-client uses the incorrect way to set Iframe height and width. Iframe height and width are not controlled by CSS style properties but directly through width and height properties.
So this: this._frame.style.width = 0; this._frame.style.height = 0;
should be this: this._frame.height = 0; this._frame.width = 0;