Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

feat(zone.js): support IE9+ #115

Merged
merged 1 commit into from
May 18, 2015
Merged

feat(zone.js): support IE9+ #115

merged 1 commit into from
May 18, 2015

Conversation

marclaval
Copy link
Contributor

Minor fixes here and there to have all meaningful tests passing in IE9.

Also adds IE9, IE10 and IE11 to the list of browsers tested in SauceLabs.

@@ -35,7 +34,9 @@ describe('element', function () {
button.addEventListener('focus', logFunction);
button.click();
expect(log).toEqual('a');
button.dispatchEvent(new Event('focus'));
var focusEvent = document.createEvent("Event");
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

pls use single quote

@vicb
Copy link
Contributor

vicb commented May 18, 2015

LGTM with a few comments

@@ -9,11 +9,11 @@ describe('whatever', run(function () {
}, 'does not support whatevs'))

*/
function ifEnvSupports(test, block) {
function ifEnvSupports(test, block, extraArguments) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not needed ?

@vicb vicb merged commit 554fae0 into angular:master May 18, 2015
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants