From ac5cec7b18fd7f9150d299d55f407b55c0616a60 Mon Sep 17 00:00:00 2001 From: Kevin Schaaf Date: Thu, 25 Jun 2020 16:55:28 -0700 Subject: [PATCH] Add test for vendor-prefixed properties in styleMap. --- src/test/integration/tests/basic.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/test/integration/tests/basic.ts b/src/test/integration/tests/basic.ts index 94b0eb0..9993c8c 100644 --- a/src/test/integration/tests/basic.ts +++ b/src/test/integration/tests/basic.ts @@ -897,12 +897,12 @@ export const tests: {[name: string] : SSRTest} = { }, expectations: [ { - args: [{background: 'red', paddingTop: '10px', '--my-prop': 'green'}], - html: '
' + args: [{background: 'red', paddingTop: '10px', '--my-prop': 'green', webkitAppearance: 'none'}], + html: '
' }, { - args: [{paddingTop: '20px', '--my-prop': 'gray', backgroundColor: 'white'}], - html: '
' + args: [{paddingTop: '20px', '--my-prop': 'gray', backgroundColor: 'white', webkitAppearance: 'inherit'}], + html: '
' } ], // styleMap does not dirty check individual properties before setting,