Bug
Smooth scrolling of panel content in a case when content overflows panel in any supported browser.
IE browser has very slow scrolling (has bad performance and lags) when the panel content has not quite simple structure and content overflows the panel.
In other browsers, there are no any visible problems.
You can see scrolling has awful lags
This problem doesn't allow to use the panel component for showing tables with checkboxes or radio-buttons (for example). Or for any other not simple forms.
IE11 is used for some enterprise applications yet.
Angular 5.0.3
Material 5.0.0-rc1
OS Windows 10
TypeScript 2.4.2
Internet Explorer 11
This seems to be more of an issue of rendering 100 sliders, e.g. replacing them with 100 buttons works better.
@crisbeto I tried to use this content without a panel. The performance was good.
And I tried to use other input components in the panel. and I got the same bad result (lags)
You can see it in this example: http://plnkr.co/edit/81RsdBbROdXaLmQrYumr
@crisbeto By the way, scrolling has the same lags if I use buttons.
http://plnkr.co/edit/Rvf2JNDZa0X3LyudBQ0R
I have the same problem. A few <input matInputs> inside a popup. Typing text is slow in IE 11 only, and scrolling is even worse
still present in 7.3.3.
Profiling shows that scrolling inside the mat dialog causes long blocking repaints of the entire cdk-overlay-container:

workaround: dividing the content into multiple mat-tab elements avoids the need to scroll inside the mat dialog and thus prevents the performance issue.
this issue could be related: https://github.com/angular/material2/issues/11758
With MatDialog, I was experiencing the slow lag issue as well. A fix that worked for me was to apply this css:
.mat-dialog-container {
border-radius: 0px !important;
}
It might change the appearance but I can deal without rounded corners for a performance increase.
This might be related but I suspect border-radius and overflow don't play nicely together in IE 11 on a single element:
I struggled to find a solution but this seems to have fixed it for me :-)
@patakattack Thank you so much for this fix. It completely fixed our performance issues in IE11. We unfortunately need to support it because it is our company default.
@patakattack Solved thanks to you. IE 11 is really amazing :')
Most helpful comment
With MatDialog, I was experiencing the slow lag issue as well. A fix that worked for me was to apply this css:
It might change the appearance but I can deal without rounded corners for a performance increase.
This might be related but I suspect border-radius and overflow don't play nicely together in IE 11 on a single element:
https://stackoverflow.com/questions/39490557/how-does-overflow-hidden-border-radius-on-a-container-cause-massive-slowdown
I struggled to find a solution but this seems to have fixed it for me :-)