Skip to content

Commit 5cfdf1a

Browse files
industralyyx990803
authored andcommitted
fix: handle undefined style properties in jsdom (fix #7444) (#8281)
1 parent 038ed86 commit 5cfdf1a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/platforms/web/runtime/transition-util.js

+5-4
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,12 @@ export function getTransitionInfo (el: Element, expectedType?: ?string): {
122122
hasTransform: boolean;
123123
} {
124124
const styles: any = window.getComputedStyle(el)
125-
const transitionDelays: Array<string> = styles[transitionProp + 'Delay'].split(', ')
126-
const transitionDurations: Array<string> = styles[transitionProp + 'Duration'].split(', ')
125+
// JSDOM may return undefined for transition properties
126+
const transitionDelays: Array<string> = (styles[transitionProp + 'Delay'] || '').split(', ')
127+
const transitionDurations: Array<string> = (styles[transitionProp + 'Duration'] || '').split(', ')
127128
const transitionTimeout: number = getTimeout(transitionDelays, transitionDurations)
128-
const animationDelays: Array<string> = styles[animationProp + 'Delay'].split(', ')
129-
const animationDurations: Array<string> = styles[animationProp + 'Duration'].split(', ')
129+
const animationDelays: Array<string> = (styles[animationProp + 'Delay'] || '').split(', ')
130+
const animationDurations: Array<string> = (styles[animationProp + 'Duration'] || '').split(', ')
130131
const animationTimeout: number = getTimeout(animationDelays, animationDurations)
131132

132133
let type: ?string

0 commit comments

Comments
 (0)