Update web-platform-tests to revision 20a217cb8488e4339e0c9610aba99e2654b676c3

This commit is contained in:
WPT Sync Bot 2020-04-17 08:19:21 +00:00
parent 3ca86eeba5
commit 21de781e2a
285 changed files with 5707 additions and 670 deletions

View file

@ -0,0 +1,26 @@
<!DOCTYPE html>
<style>
.wrapper {
width: 200px;
border: 5px solid;
}
.wrapper > div {
height: 100px;
}
.magenta {
background: magenta;
}
.cyan {
background: cyan;
}
</style>
<p>Test passes if you see a 200x200 box with top half cyan and bottom half magenta.</p>
<div class="wrapper">
<div class="cyan"></div>
<div class="magenta"></div>
</div>