mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Update web-platform-tests to revision 6366ae15c2bc2314adca4321357c68bb468fec98
This commit is contained in:
parent
e47e884cc7
commit
6b740f0283
328 changed files with 3757 additions and 591 deletions
|
@ -0,0 +1,31 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>CSS Flexbox: text-overflow in flexbox</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-flexbox/#flex-containers">
|
||||
<link rel="match" href="reference/text-overflow-on-flexbox-001-ref.html">
|
||||
<meta name="assert" content="This test ensures that the text-overflow on flexbox should have no effect"/>
|
||||
<style>
|
||||
div.flex {
|
||||
display: flex;
|
||||
width: 100px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="flex">
|
||||
AAAAAAAAAAAAAAAAAAAA
|
||||
</div>
|
||||
<div class="flex">
|
||||
<b>bbbbbbbbbbbbbbbbbbbb</b>
|
||||
</div>
|
||||
<div class="flex">
|
||||
<div>cccccccccccccccccccc</div>
|
||||
</div>
|
||||
<div class="flex">
|
||||
DDDDDDDDDDDDDDDDDDDD<b>ee</b>FFFFFFFFFFFFFFFFFFFF
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue