mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
Update web-platform-tests to revision 4a65f5002f1e2e778f62a9b99f4298dc8948f26c
This commit is contained in:
parent
4c3f878026
commit
e0938d4233
282 changed files with 3027 additions and 1009 deletions
|
@ -0,0 +1,16 @@
|
|||
<!DOCTYPE html>
|
||||
<style>
|
||||
#container {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
font-size: 20px;
|
||||
width: 10ch;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div id="container">
|
||||
abc def ghi jkl mno pqr stu vwx yz
|
||||
123 456 789
|
||||
</div>
|
||||
</body>
|
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html>
|
||||
<title>CSS Overflow: appending to a box with -webkit-line-clamp</title>
|
||||
<link rel="help" href="https://drafts.csswg.org/css-overflow-3/#webkit-line-clamp">
|
||||
<link rel="match" href="reference/webkit-line-clamp-dynamic-001-ref.html">
|
||||
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org">
|
||||
<style>
|
||||
#container {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 2;
|
||||
-webkit-box-orient: vertical;
|
||||
font-size: 20px;
|
||||
width: 10ch;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<div id="container">
|
||||
abc def ghi jkl mno pqr stu vwx yz
|
||||
</div>
|
||||
<script>
|
||||
testAppend();
|
||||
function testAppend() {
|
||||
document.body.offsetTop;
|
||||
let span = document.createElement('span');
|
||||
span.textContent = '123 456 789';
|
||||
container.appendChild(span);
|
||||
}
|
||||
</script>
|
||||
</body>
|
Loading…
Add table
Add a link
Reference in a new issue