After updating my angular to version 4.0.0 and chrome to 62.0.3202.94, I encountered the following error message:
[Deprecation] /deep/ combinator in CSS is deprecated and will be removed in M63, around December 2017. Refer to for more information.
The error seems to be related to using clientWidth
or clientHeight
in my code:
document.getElementById(this.ID).clientWidth;
or possibly here:
document.documentElement.scrollTop = parseInt(sessionStorage.getItem('scrollPosition'), 10);
Is this a misinterpretation by the browser? How can I resolve this issue?