From 9a4683354f2da02b9c1b041e49fefa86258b578e Mon Sep 17 00:00:00 2001 From: Steven Orvell Date: Thu, 19 Oct 2017 15:12:11 -0700 Subject: [PATCH] Fix tests on Firefox. --- test/unit/shady-unscoped-style.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/unit/shady-unscoped-style.html b/test/unit/shady-unscoped-style.html index e61847bbcd..7ca54351bb 100644 --- a/test/unit/shady-unscoped-style.html +++ b/test/unit/shady-unscoped-style.html @@ -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'); }); @@ -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'); });