blob: 88908877d668067c9c80fab1391f3c5f4e0dd53b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<title>CSS Text Test: Ellipsize overflowing text in RTL cause Chrome to crash</title>
<link rel="help" href="https://crbug.com/1130153">
<style>
.CLASS2 {
text-overflow: ellipsis;
overflow: hidden;
direction: rtl;
}
.CLASS13 {
font-size: 32768em;
}
</style>
<div class="CLASS2">
<abbr class="CLASS13">x AxBxC </abbr>C
</div>
|