Skip to content

Commit 624189a

Browse files
committed
Fix linting
Adapt scoped keyframes test for Safari 11 still failing on https://bugs.webkit.org/show_bug.cgi?id=166748
1 parent 31c0ebc commit 624189a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/unit/dir.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
static get is() {return 'x-inner-dir';}
5858
}
5959
customElements.define(XInnerDir.is, XInnerDir);
60-
})
60+
});
6161
</script>
6262
</dom-module>
6363

test/unit/styling-cross-scope-var.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@
790790
});
791791

792792
test('instances of scoped @keyframes', function(done) {
793-
if (navigator.userAgent.match(/Safari\/603/) && ShadyCSS.nativeCss && ShadyCSS.nativeShadow) {
793+
if (navigator.userAgent.match(/Safari\/60(3|4)/) && ShadyCSS.nativeCss && ShadyCSS.nativeShadow) {
794794
// `:nth-of-type` is broken in shadow roots on Safari 10.1
795795
// https://bugs.webkit.org/show_bug.cgi?id=166748
796796
this.skip();

0 commit comments

Comments
 (0)