-
Notifications
You must be signed in to change notification settings - Fork 27.4k
style(*): IE is a real browser, and chakra is pretty solid #10242
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -722,7 +722,6 @@ Parser.prototype = { | |
ensureSafeObject(context, expressionText); | ||
ensureSafeFunction(fn, expressionText); | ||
|
||
// IE stupidity! (IE doesn't have apply for some native functions) | ||
var v = fn.apply | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I've asked if this is still factual, if it's not true of IE9 we can probably just delete this (yay!) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I do not have a box with IE, but it looks like it is still an issue. E.g. Anyhow, please keep a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Loading up IE There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. console.log cannot be |
||
? fn.apply(context, args) | ||
: fn(args[0], args[1], args[2], args[3], args[4]); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comment does not make sense, since
text
is IDL-exposed for HTMLScriptElement, and we're using it in all cases anyways.