Skip to content

Commit

Permalink
Extend Edge exceptions beyond Edge 16
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed Jul 11, 2018
1 parent 2729662 commit 2ac2c6e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions test/unit/custom-style.html
Expand Up @@ -483,8 +483,8 @@
assertComputed(el, '11px', 'right');
assertComputed(el, '12px', 'top');

// Avoid Edge 16 bug with CSS Custom Properties and Fonts.
if (navigator.userAgent.match('Edge/16') && (!window.ShadyCSS || window.ShadyCSS.nativeCss)) {
// Avoid Edge bug with CSS Custom Properties and Fonts.
if (navigator.userAgent.match('Edge') && (!window.ShadyCSS || window.ShadyCSS.nativeCss)) {
return;
}

Expand Down
2 changes: 1 addition & 1 deletion test/unit/styling-cross-scope-apply.html
Expand Up @@ -588,7 +588,7 @@
});

test('mixins apply to @keyframe rules', function(done) {
if (navigator.userAgent.match('Edge/16') && (!window.ShadyCSS || window.ShadyCSS.nativeCss)) {
if (navigator.userAgent.match('Edge') && (!window.ShadyCSS || window.ShadyCSS.nativeCss)) {
// skip test due to missing variable support in keyframes
// https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/12084341/
this.skip();
Expand Down
2 changes: 1 addition & 1 deletion test/unit/styling-scoped.html
Expand Up @@ -890,7 +890,7 @@
});

test('keyframes change scope', function(done) {
if (navigator.userAgent.match('Edge/16') && (!window.ShadyCSS || window.ShadyCSS.nativeCss)) {
if (navigator.userAgent.match('Edge') && (!window.ShadyCSS || window.ShadyCSS.nativeCss)) {
// skip test due to missing variable support in keyframes
// https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/12084341/
this.skip();
Expand Down

0 comments on commit 2ac2c6e

Please sign in to comment.