summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/deprecated-flexbox/line-clamp-removed-dynamically.html
blob: 49048e7ce1cb79d611f9c0c56e198e800c2533a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div id="target" style="
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    width: 100px;
">
    <div>
        Unless this sentence is truncated after two lines, PASS.
    </div>
</div>
<script>
    document.body.offsetTop;
    target.style.removeProperty("-webkit-line-clamp");
</script>