| OLD | NEW |
| (Empty) |
| 1 <!doctype html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <title>cubic-bezier value overflow: Shadows</title> | |
| 5 <style> | |
| 6 .box { | |
| 7 position: relative; | |
| 8 left: 0; | |
| 9 height: 100px; | |
| 10 width: 100px; | |
| 11 margin: 10px; | |
| 12 background-color: blue; | |
| 13 box-shadow: 5px -5px 5px 5px #404040; | |
| 14 -webkit-transition: box-shadow 1s linear; | |
| 15 } | |
| 16 .animating > .box { | |
| 17 box-shadow: -5px 20px 15px 15px #c0c0c0; | |
| 18 } | |
| 19 </style> | |
| 20 <script src="../animations/resources/animation-test-helpers.js"></script> | |
| 21 <script> | |
| 22 const expectedValues = [ | |
| 23 // [time, element-id, property, expected-value, tolerance] | |
| 24 [0.50, "box1", "box-shadow", [-7, 25], 5], | |
| 25 [0.95, "box1", "box-shadow", [-6, 22], 5], | |
| 26 [0.10, "box2", "box-shadow", [7, -9], 5], | |
| 27 [0.50, "box2", "box-shadow", [2, 4], 5], | |
| 28 [0.95, "box2", "box-shadow", [-6, 22], 5], | |
| 29 [0.10, "box3", "box-shadow", [9, -16], 5], | |
| 30 [0.50, "box3", "box-shadow", [16, -32], 5], | |
| 31 [0.15, "box4", "box-shadow", [-8, 27], 5], | |
| 32 [0.50, "box4", "box-shadow", [0, 8], 5], | |
| 33 [0.80, "box4", "box-shadow", [8, -11], 5], | |
| 34 ]; | |
| 35 | |
| 36 function setupTest() { | |
| 37 document.getElementById('container').className = 'animating'; | |
| 38 } | |
| 39 | |
| 40 runTransitionTest(expectedValues, setupTest); | |
| 41 </script> | |
| 42 </head> | |
| 43 <body> | |
| 44 <div id="container"> | |
| 45 <div class="box" id="box1" style="-webkit-transition-timing-function: cubi
c-bezier(0.3, 1.5, 0.8, 1.5);"></div> | |
| 46 <div class="box" id="box2" style="-webkit-transition-timing-function: cubi
c-bezier(0.4, -0.8, 0.7, 1.7);"></div> | |
| 47 <div class="box" id="box3" style="-webkit-transition-timing-function: cubi
c-bezier(0.7, -2, 1, -1.5);"></div> | |
| 48 <div class="box" id="box4" style="-webkit-transition-timing-function: cubi
c-bezier(0, 4, 1, -3);"></div> | |
| 49 </div> | |
| 50 <div id="result"></div> | |
| 51 </body> | |
| 52 </html> | |
| OLD | NEW |