Update web-platform-tests to revision b1d8b4ac4dc04fd1da16cb309ed675fa6a07bfd6

This commit is contained in:
WPT Sync Bot 2020-01-12 08:24:07 +00:00
parent dbba9ea453
commit 50a6996461
36 changed files with 794 additions and 73 deletions

View file

@ -0,0 +1,20 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Overflow: Reference Overflow recalc after font-size change</title>
<link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
<style>
#scroller {
height: 200px;
overflow: scroll;
}
#wrapper {
margin-top: 100px;
width: 200px;
height: 200px;
background: green;
}
</style>
<p>Test passes if there is <strong>no red</strong>.</p>
<div id="scroller">
<div id="wrapper"></div>
</div>