OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <style> | 2 <style> |
3 .transition { | 3 .transition { |
4 height: -webkit-calc(100% - 10px); | 4 height: -webkit-calc(100% - 10px); |
5 -webkit-transition: height 50ms; | 5 -webkit-transition: height 50ms; |
6 } | 6 } |
7 .flim + .sibling { | 7 .flim + .sibling { |
8 } | 8 } |
9 </style> | 9 </style> |
10 | 10 |
(...skipping 16 matching lines...) Expand all Loading... |
27 th.setAttribute('class', 'transition'); | 27 th.setAttribute('class', 'transition'); |
28 document.body.appendChild(th); | 28 document.body.appendChild(th); |
29 | 29 |
30 function boom() { | 30 function boom() { |
31 div.setAttribute('class', 'stix'); | 31 div.setAttribute('class', 'stix'); |
32 if (window.layoutTestController) | 32 if (window.layoutTestController) |
33 layoutTestController.notifyDone(); | 33 layoutTestController.notifyDone(); |
34 } | 34 } |
35 setTimeout(boom, 1); | 35 setTimeout(boom, 1); |
36 </script> | 36 </script> |
OLD | NEW |