Update web-platform-tests to revision b'7af9d6ec48ab04043a2bea85a3599904a1a19efa'

This commit is contained in:
WPT Sync Bot 2021-02-21 08:20:50 +00:00 committed by Josh Matthews
parent 8050c95e31
commit 87be1008de
2742 changed files with 142451 additions and 40667 deletions

View file

@ -0,0 +1,57 @@
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>CSS Reftest Reference</title>
<link rel="author" title="Morgan Rae Reschenberg" href="mailto:mreschenberg@berkeley.edu">
<style>
.outer {
height: 100px;
width: 100px;
}
.auto {
overflow: auto;
}
.inner-sm {
height: 50px;
width: 50px;
background: lightblue;
}
.inner-lg-1 {
height: 95px;
width: 95px;
float:left;
background: lightblue;
}
.inner-lg-2 {
height: 200px;
width: 200px;
float:left;
}
.pass {
background: green;
}
.border {
border: 5px solid green;
}
</style>
</head>
<body>
<div class="outer">
<div class="inner-sm" style="float:left;"></div>
</div>
<br>
<div class="outer auto">
<div class="inner-lg-2 pass">
</div>
</div>
<br>
<div class="inner-sm border">
<div class="inner-lg-1">
</div>
</div>
</body>
</html>