Base: Update background-repeat test with two-value section

This commit is contained in:
Timothy Flynn 2021-04-05 11:09:28 -04:00 committed by Andreas Kling
parent 3ba338dec3
commit 0794d879f3

View file

@ -34,7 +34,7 @@
</div>
</div>
<h1>Element Background</h1>
<h1>One-Value Element Background</h1>
<div style="overflow: hidden">
<div class=float>
<h2>repeat</h2>
@ -51,4 +51,22 @@
<div class=background style="background-repeat: repeat-y"></div>
</div>
</div>
<h1>Two-Value Element Background</h1>
<div style="overflow: hidden">
<div class=float>
<h2>repeat repeat</h2>
<div class=background style="background-repeat: repeat repeat"></div>
<h2>repeat no-repeat</h2>
<div class=background style="background-repeat: repeat no-repeat"></div>
</div>
<div class=float>
<h2>no-repeat no-repeat</h2>
<div class=background style="background-repeat: no-repeat no-repeat"></div>
<h2>no-repeat repeat</h2>
<div class=background style="background-repeat: no-repeat repeat"></div>
</div>
</div>
</body>