You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Neither. UA sniffing and either comments or quirks mode test is invalid.
// Support: IE 9-11 only// Prereq: Ensure that we're not running in IE<11 quirks mode. In that mode, IE < 11 allow// the "expression(javascript expression)" syntax which is insecure.if(enabled&&msie<8){throw$sceMinErr('iequirks','Strict Contextual Escaping does not support Internet Explorer version < 11 in quirks '+'mode. You can fix this by adding the text <!doctype html> to the top of your HTML '+'document. See http://docs.angularjs.org/api/ng.$sce for more information.');}
Testing for an IE version < 8 is not the correct test for quirks mode. Assuming that msie is based on the documentMode property, the correct check would be:
Note: for support questions, please use one of these channels: https://github.com/angular/angular.js/blob/master/CONTRIBUTING.md#question. This repository's issues are reserved for feature requests and bug reports.
Do you want to request a feature or report a bug?
Neither. UA sniffing and either comments or quirks mode test is invalid.
Testing for an IE version < 8 is not the correct test for quirks mode. Assuming that
msieis based on thedocumentModeproperty, the correct check would be: