Update web-platform-tests to revision 10168e9a5d44efbc6e7d416d1d454eb9c9f1396c

This commit is contained in:
Josh Matthews 2018-01-31 09:13:41 -05:00
parent c88dc51d03
commit 0e1caebaf4
791 changed files with 23381 additions and 5501 deletions

View file

@ -0,0 +1,26 @@
<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<meta charset="utf-8">
<title>Reference: text-overflow on tr::before with overflow:hidden</title>
<style type="text/css">
td {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
</style>
</head>
<body>
PASS if there is an ellipsis at the end of the text below.
<table style="table-layout: fixed; width: 130px" cellpadding="0" cellspacing="0">
<tr><td>Some long text here that overflows and whatnot.</td></tr>
</table>
</body>
</html>

View file

@ -0,0 +1,31 @@
<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<meta charset="utf-8">
<title>Test: text-overflow on tr::before with overflow:hidden</title>
<link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu">
<link rel="help" href="https://www.w3.org/TR/css3-ui/#text-overflow" title="5.2. the 'text-overflow' property">
<link rel="match" href="text-overflow-024-ref.html">
<style type="text/css">
tr::before {
content: "Some long text here that overflows and whatnot.";
display: table-cell;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
</style>
</head>
<body>
PASS if there is an ellipsis at the end of the text below.
<table style="table-layout: fixed; width: 130px" cellpadding="0" cellspacing="0">
<tr></tr>
</table>
</body>
</html>

View file

@ -0,0 +1,24 @@
<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<meta charset="utf-8">
<title>Reference: text-overflow on tr::before without overflow:hidden</title>
<style type="text/css">
td {
white-space: nowrap;
}
</style>
</head>
<body>
PASS if there is no ellipsis below.
<table style="table-layout: fixed; width: 130px" cellpadding="0" cellspacing="0">
<tr><td>Some long text here that overflows and whatnot.</td></tr>
</table>
</body>
</html>

View file

@ -0,0 +1,33 @@
<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<meta charset="utf-8">
<title>Test: text-overflow on tr::before without overflow:hidden</title>
<link rel="author" title="Boris Zbarsky" href="mailto:bzbarsky@mit.edu">
<link rel="help" href="https://www.w3.org/TR/css3-ui/#text-overflow" title="5.2. the 'text-overflow' property">
<link rel="match" href="text-overflow-025-ref.html">
<style type="text/css">
tr::before {
content: "Some long text here that overflows and whatnot.";
display: table-cell;
white-space: nowrap;
text-overflow: ellipsis;
}
tr {
overflow: hidden;
}
</style>
</head>
<body>
PASS if there is no ellipsis below.
<table style="table-layout: fixed; width: 130px" cellpadding="0" cellspacing="0">
<tr></tr>
</table>
</body>
</html>

View file

@ -0,0 +1,62 @@
<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<meta charset="utf-8">
<title>Reference: text-overflow with leading white-space</title>
<link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1403986">
<style type="text/css">
html,body {
color:black; background-color:white; font:16px/1 monospace;
}
.ellipsize {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 100px;
border: 1px solid;
}
.inline-block {
display: inline-block;
background: red;
}
</style>
</head>
<body>
<pre>
The test PASS if all of the following are true:
1. there are no red areas
2. the first two blocks display "PASS" but no ellipsis
3. the last three blocks display an ellipsis
</pre>
<div class="ellipsize" style="text-overflow: clip">
<span style="margin-left:5px"></span><span class="inline-block" style="background:lime">
PASS PASS PASS PASS PASS</span>
</div>
<div class="ellipsize" style="text-overflow: clip">
<span style="margin-left:5px"></span>
<span class="inline-block" style="background:lime">
PASS PASS PASS PASS PASS</span>
</div>
<div class="ellipsize">
<span style="margin-left:10px"></span>&nbsp;&#x2026;
</div>
<div class="ellipsize">
&nbsp;&#x2026;
</div>
<div class="ellipsize">
a&#x2026;
</div>
</body>
</html>

View file

@ -0,0 +1,67 @@
<!DOCTYPE HTML>
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
-->
<html><head>
<meta charset="utf-8">
<title>Test: text-overflow with leading white-space</title>
<link rel="author" title="Mats Palmgren" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1403986">
<link rel="help" href="https://www.w3.org/TR/css3-ui/#text-overflow" title="5.2. the 'text-overflow' property">
<link rel="match" href="text-overflow-026-ref.html">
<style type="text/css">
html,body {
color:black; background-color:white; font:16px/1 monospace;
}
.ellipsize {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
width: 100px;
border: 1px solid;
}
.inline-block {
display: inline-block;
background: red;
}
</style>
</head>
<body>
<pre>
The test PASS if all of the following are true:
1. there are no red areas
2. the first two blocks display "PASS" but no ellipsis
3. the last three blocks display an ellipsis
</pre>
<div class="ellipsize">
<span style="margin-left:5px"></span><span class="inline-block" style="background:lime">
PASS PASS PASS PASS PASS</span>
</div>
<div class="ellipsize">
<span style="margin-left:5px"></span>
<span class="inline-block" style="background:lime">
PASS PASS PASS PASS PASS</span>
</div>
<div class="ellipsize">
<span style="margin-left:10px"></span>&nbsp;<span class="inline-block">
FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL </span>
</div>
<div class="ellipsize">
&nbsp;<span class="inline-block">
FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL </span>
</div>
<div class="ellipsize">
a<span class="inline-block">
FAIL FAIL FAIL FAIL FAIL FAIL FAIL FAIL </span>
</div>
</body>
</html>