blob: 1a14dd514bb64813c01a9afa943302e59f2083ba [file] [log] [blame]
<!DOCTYPE html>
<head>
<title>Test to check that ellipsis in free space is moving with text.</title>
<style>
#text {
width: 80px;
margin: 0 auto;
}
h2 {
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
</style>
</head>
<body>
<div id="main" style="width: 500px">
<div id="place" style="width: 200px">
<div id="text">
<h2>test1 test2 test3</h2>
</div>
</div>
</div>
</script>
</body>
</html>