5 <title>Singular scale
</title>
6 <style type=
"text/css" media=
"screen">
10 border:
1px solid black;
16 background-color: gray;
18 -webkit-transition: -webkit-transform
1s linear;
30 <script src=
"../../animations/resources/animation-test-helpers.js" type=
"text/javascript" charset=
"utf-8"></script>
31 <script type=
"text/javascript" charset=
"utf-8">
33 const expectedValues = [
34 // [time, element-id, property, expected-value, tolerance]
35 [
0.5, 'inner', '-webkit-transform
.0',
0.5,
0.1],
40 var box = document.getElementById('box');
41 box.className = 'final';
43 runTransitionTest(expectedValues, setupTest, undefined, true /* pixel test */);
47 <p>Check the pixel result to make sure that the gray square is half way through the scale animation.
</p>
53 <div id=
"result"></div>