diff options
Diffstat (limited to 'Base/res/html/misc/background-repeat-test.html')
-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> |