Skip to content

Commit

Permalink
Fix tests on Firefox.
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Orvell committed Oct 19, 2017
1 parent 1c5b731 commit 9a46833
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/unit/shady-unscoped-style.html
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@
});

test('shared and @apply apply when used with unscoped styles', function() {
assertComputed(el1.$.fromStyle, '10px', 'padding');
assertComputed(el1.$.fromStyle, '10px', 'padding-top');
assertComputed(el1.$.normal, '3px');
assertComputed(el2.$.normal, '3px');
});
Expand All @@ -110,8 +110,8 @@
if (!window.ShadyDOM) {
this.skip();
}
assertComputed(el1.$.fromStyle, '0px', 'margin');
assertComputed(el2.$.fromStyle, '0px', 'margin');
assertComputed(el1.$.fromStyle, '0px', 'margin-top');
assertComputed(el2.$.fromStyle, '0px', 'margin-top');
});


Expand Down

0 comments on commit 9a46833

Please sign in to comment.