OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <style> | 2 <style> |
3 .test { | 3 .test { |
4 -webkit-transition: width 30s; | 4 -webkit-transition: width 30s; |
5 } | 5 } |
6 .test:nth-child(2n) { | 6 .test:nth-child(2n) { |
7 width: -webkit-calc(-8em + 59%); | 7 width: -webkit-calc(-8em + 59%); |
8 } | 8 } |
9 </style> | 9 </style> |
10 | 10 |
(...skipping 20 matching lines...) Expand all Loading... |
31 try { | 31 try { |
32 elementSection.appendChild(elementQ); | 32 elementSection.appendChild(elementQ); |
33 } catch (e) { | 33 } catch (e) { |
34 } | 34 } |
35 if (window.layoutTestController) | 35 if (window.layoutTestController) |
36 layoutTestController.notifyDone(); | 36 layoutTestController.notifyDone(); |
37 } | 37 } |
38 | 38 |
39 setTimeout(boom, 1); | 39 setTimeout(boom, 1); |
40 </script> | 40 </script> |
OLD | NEW |