OLD | NEW |
1 <div id="target" style=" | 1 <div id="target" style=" |
2 display: -webkit-box; | 2 display: -webkit-box; |
3 -webkit-box-orient: vertical; | 3 -webkit-box-orient: vertical; |
4 overflow: hidden; | 4 overflow: hidden; |
5 -webkit-line-clamp: 2; | 5 -webkit-line-clamp: 2; |
6 width: 100px; | 6 width: 100px; |
7 "> | 7 "> |
8 <div> | 8 <div> |
9 Unless this sentence is truncated after two lines, PASS. | 9 Unless this sentence is truncated after two lines, PASS. |
10 </div> | 10 </div> |
11 </div> | 11 </div> |
12 <script> | 12 <script> |
13 document.body.offsetTop; | 13 document.body.offsetTop; |
14 target.style.removeProperty("-webkit-line-clamp"); | 14 target.style.removeProperty("-webkit-line-clamp"); |
15 </script> | 15 </script> |
OLD | NEW |