Skip to content

fix(cdk/platform): avoid error during server-side rendering if document is stubbed out #22260

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 19, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/cdk/platform/features/scrolling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ let scrollBehaviorSupported: boolean|undefined;
/** Check whether the browser supports scroll behaviors. */
export function supportsScrollBehavior(): boolean {
if (scrollBehaviorSupported == null) {
// If we're not in the browser, it can't be supported.
if (typeof document !== 'object' || !document) {
// If we're not in the browser, it can't be supported. Also check for `Element`, because
// some projects stub out the global `document` during SSR which can throw us off.
if (typeof document !== 'object' || !document || typeof Element !== 'function' || !Element) {
scrollBehaviorSupported = false;
return scrollBehaviorSupported;
}
Expand Down