Skip to content

Commit

Permalink
[ci skip] note safari bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed Apr 10, 2017
1 parent dea052a commit ef90168
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/unit/styling-cross-scope-var.html
Original file line number Diff line number Diff line change
Expand Up @@ -752,7 +752,8 @@
suite('scoped-styling-var', function() {

function assertComputed(element, value, pseudo, name) {
// force a style-recalc for Safari
// force a style-recalc for Safari missing updated CSS Custom Properties
// https://bugs.webkit.org/show_bug.cgi?id=170708
element.offsetWidth;
name = name || 'border-top-width';
var computed = element.getComputedStyleValue && !pseudo ?
Expand Down Expand Up @@ -791,6 +792,7 @@
test('instances of scoped @keyframes', function(done) {
if (navigator.userAgent.match(/Safari\/603/) && ShadyCSS.nativeCss && ShadyCSS.nativeShadow) {
// `:nth-of-type` is broken in shadow roots on Safari 10.1
// https://bugs.webkit.org/show_bug.cgi?id=166748
this.skip();
}
var xKeyframes = styled.$.keyframes2;
Expand Down

0 comments on commit ef90168

Please sign in to comment.