9 background-color: blue;
10 shape-outside: polygon(nonzero,
30px
30px);
11 transition-property: shape-outside;
12 transition-duration:
1s;
13 transition-timing-function: linear;
17 shape-outside: polygon(nonzero,
50px
50px);
20 <script src=
"../animations/resources/animation-test-helpers.js"></script>
21 <script type=
"text/javascript">
23 const expectedValues
= [
24 // [time, element-id, property, expected-value, tolerance]
25 [0.5, 'box', 'shape-outside', 'polygon(40px 40px)', 1],
30 document
.getElementById('box').className
= 'changed';
33 runTransitionTest(expectedValues
, setupTest
);
38 <div id=
"result"></div>