diff options
author | Timothy Flynn <trflynn89@pm.me> | 2021-04-05 11:09:28 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-04-05 18:49:04 +0200 |
commit | 0794d879f3ac36089c56d3238c4db8c6f5f49a90 (patch) | |
tree | ebabd6374fb1dc466d3ab0245313947537dc6cd6 /Base | |
parent | 3ba338dec31826ffe048c8ac9aa841f1abdafda1 (diff) | |
download | serenity-0794d879f3ac36089c56d3238c4db8c6f5f49a90.zip |
Base: Update background-repeat test with two-value section
Diffstat (limited to 'Base')
-rw-r--r-- | Base/res/html/misc/background-repeat-test.html | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/Base/res/html/misc/background-repeat-test.html b/Base/res/html/misc/background-repeat-test.html index 98233a0438..8ebd92e5e9 100644 --- a/Base/res/html/misc/background-repeat-test.html +++ b/Base/res/html/misc/background-repeat-test.html @@ -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> |