mirror of
https://github.com/servo/servo.git
synced 2025-08-07 22:45:34 +01:00
Update web-platform-tests to revision e87f38097902e16348d4e17f4fe3bc2d0112bff1
This commit is contained in:
parent
2f8fa32e91
commit
db5631a086
381 changed files with 11610 additions and 4232 deletions
|
@ -0,0 +1,26 @@
|
|||
<!DOCTYPE html>
|
||||
<style>
|
||||
.test {
|
||||
width: 200px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.float {
|
||||
float: left;
|
||||
width: 50%;
|
||||
height: 100px;
|
||||
|
||||
background: orange;
|
||||
clip-path: polygon(0 0, 100% 100%, 0 100%);
|
||||
}
|
||||
|
||||
.flex {
|
||||
display: flex;
|
||||
height: 50px;
|
||||
background: rebeccapurple;
|
||||
}
|
||||
</style>
|
||||
<div class="test">
|
||||
<div class="float"></div>
|
||||
<div class="flex"></div>
|
||||
</div>
|
|
@ -0,0 +1,31 @@
|
|||
<!DOCTYPE html>
|
||||
<link rel="match" href="reference/shape-outside-formatting-context-ref.html">
|
||||
<link rel="help" href="https://drafts.csswg.org/css-shapes/">
|
||||
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/1970">
|
||||
<meta name="assert" content="The test verifies that a new formatting context does *not* get sized and positioned based off the float area (defined by shape outside).">
|
||||
<style>
|
||||
.test {
|
||||
width: 200px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.float {
|
||||
float: left;
|
||||
width: 50%;
|
||||
height: 100px;
|
||||
|
||||
background: orange;
|
||||
shape-outside: polygon(0 0, 100% 100%, 0 100%);
|
||||
clip-path: polygon(0 0, 100% 100%, 0 100%);
|
||||
}
|
||||
|
||||
.flex {
|
||||
display: flex;
|
||||
height: 50px;
|
||||
background: rebeccapurple;
|
||||
}
|
||||
</style>
|
||||
<div class="test">
|
||||
<div class="float"></div>
|
||||
<div class="flex"></div>
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue