Skip to content

Commit

Permalink
Base: Update background-repeat test with two-value section
Browse files Browse the repository at this point in the history
  • Loading branch information
trflynn89 authored and awesomekling committed Apr 5, 2021
1 parent 3ba338d commit 0794d87
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion Base/res/html/misc/background-repeat-test.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ <h2>repeat-y</h2>
</div>
</div>

<h1>Element Background</h1>
<h1>One-Value Element Background</h1>
<div style="overflow: hidden">
<div class=float>
<h2>repeat</h2>
Expand All @@ -51,4 +51,22 @@ <h2>repeat-y</h2>
<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>

0 comments on commit 0794d87

Please sign in to comment.