-
Notifications
You must be signed in to change notification settings - Fork 230
Description
The test 13 fails in the screenshot at #169 in Chrome at windows because it is testing against the top level container of the plugin instead of the parent of the steps (which I suppose is the actual canvas the test refers to). The top level container always have a transition-duration
property in firefox with the value of 0s
, so this test always passes in Firefox and always fails in chrome (see below)
Chrome optimizes the "transition-duration" and puts the duration
inside "webkit-transition" property in the "style" attribute, so testing against the style
property doesn't actually works across all browsers.
To fix, test against the actual canvas element and instead of relying that the browser puts the transition-duration
correctly inside the style attribute, test againt the actual css value (which tests for the property existence AND the correct value).