Strict Contextual Escaping does not support Internet Explorer version < 11 in quirks mode. You can fix this by adding the text to the top of your HTML document. See http://docs.angularjs.org/api/ng.$sce for more information.
This error occurs when you are using AngularJS with Strict Contextual Escaping (SCE) mode enabled (the default) on IE10 or lower in quirks mode.
In this mode, IE<11 allow one to execute arbitrary javascript by the use of the expression()
syntax and is not supported.
Refer
CSS expressions no longer supported for the Internet zone.aspx)
to learn more about them.
To resolve this error please specify the proper doctype at the top of your main html document:
<!doctype html>