OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <style> | 2 <style> |
3 .test { | 3 .test { |
4 -webkit-transition: height 1s; | 4 -webkit-transition: height 1s; |
5 } | 5 } |
6 .test:nth-child(2n) { | 6 .test:nth-child(2n) { |
7 height: -webkit-calc(45em - 81%); | 7 height: -webkit-calc(45em - 81%); |
8 } | 8 } |
9 </style> | 9 </style> |
10 | 10 |
(...skipping 17 matching lines...) Expand all Loading... |
28 document.documentElement.appendChild(elementIframe); | 28 document.documentElement.appendChild(elementIframe); |
29 | 29 |
30 function boom() { | 30 function boom() { |
31 elementOptGroup.appendChild(elementBr); | 31 elementOptGroup.appendChild(elementBr); |
32 if (window.layoutTestController) | 32 if (window.layoutTestController) |
33 layoutTestController.notifyDone(); | 33 layoutTestController.notifyDone(); |
34 } | 34 } |
35 | 35 |
36 setTimeout(boom, 1); | 36 setTimeout(boom, 1); |
37 </script> | 37 </script> |
OLD | NEW |