diff --git a/packages/runtime-core/__tests__/hydration.spec.ts b/packages/runtime-core/__tests__/hydration.spec.ts
index 303db51cb44..0d7df43f6aa 100644
--- a/packages/runtime-core/__tests__/hydration.spec.ts
+++ b/packages/runtime-core/__tests__/hydration.spec.ts
@@ -1431,11 +1431,35 @@ describe('SSR hydration', () => {
mountWithHydration(`
`, () =>
h('div', { style: `color:red;` }),
)
+ mountWithHydration(
+ ``,
+ () => h('div', { style: `font-size: 12px; color:red;` }),
+ )
+ mountWithHydration(``, () =>
+ withDirectives(createVNode('div', { style: 'color: red' }, ''), [
+ [vShow, false],
+ ]),
+ )
expect(`Hydration style mismatch`).not.toHaveBeenWarned()
mountWithHydration(``, () =>
h('div', { style: { color: 'green' } }),
)
- expect(`Hydration style mismatch`).toHaveBeenWarned()
+ expect(`Hydration style mismatch`).toHaveBeenWarnedTimes(1)
+ })
+
+ test('style mismatch w/ v-show', () => {
+ mountWithHydration(``, () =>
+ withDirectives(createVNode('div', { style: 'color: red' }, ''), [
+ [vShow, false],
+ ]),
+ )
+ expect(`Hydration style mismatch`).not.toHaveBeenWarned()
+ mountWithHydration(``, () =>
+ withDirectives(createVNode('div', { style: 'color: red' }, ''), [
+ [vShow, false],
+ ]),
+ )
+ expect(`Hydration style mismatch`).toHaveBeenWarnedTimes(1)
})
test('attr mismatch', () => {
@@ -1451,6 +1475,12 @@ describe('SSR hydration', () => {
mountWithHydration(`