mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 21:08:12 +00:00
Base: Add test page for the 'background-repeat' property
This page tests the following values for background-repeat: repeat, repeat-x, repeat-y, no-repeat The test is duplicated for the <body> node and for child <div> nodes, because the code that paints these nodes are in separate locations.
This commit is contained in:
parent
2601441486
commit
fcfeadaffa
7 changed files with 79 additions and 0 deletions
54
Base/res/html/misc/background-repeat-test.html
Normal file
54
Base/res/html/misc/background-repeat-test.html
Normal file
|
@ -0,0 +1,54 @@
|
|||
<style>
|
||||
body {
|
||||
background: cyan;
|
||||
}
|
||||
iframe {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
}
|
||||
.float {
|
||||
float: left;
|
||||
}
|
||||
.background {
|
||||
background: white url(background-repeat.png);
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
}
|
||||
</style>
|
||||
<body>
|
||||
<h1>Body Background</h1>
|
||||
<div style="overflow: hidden">
|
||||
<div class=float>
|
||||
<h2>repeat</h2>
|
||||
<iframe src="background-repeat.html"></iframe>
|
||||
|
||||
<h2>repeat-x</h2>
|
||||
<iframe src="background-repeat-x.html"></iframe>
|
||||
</div>
|
||||
<div class=float>
|
||||
<h2>no-repeat</h2>
|
||||
<iframe src="background-no-repeat.html"></iframe>
|
||||
|
||||
<h2>repeat-y</h2>
|
||||
<iframe src="background-repeat-y.html"></iframe>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<h1>Element Background</h1>
|
||||
<div style="overflow: hidden">
|
||||
<div class=float>
|
||||
<h2>repeat</h2>
|
||||
<div class=background style="background-repeat: repeat"></div>
|
||||
|
||||
<h2>repeat-x</h2>
|
||||
<div class=background style="background-repeat: repeat-x"></div>
|
||||
</div>
|
||||
<div class=float>
|
||||
<h2>no-repeat</h2>
|
||||
<div class=background style="background-repeat: no-repeat"></div>
|
||||
|
||||
<h2>repeat-y</h2>
|
||||
<div class=background style="background-repeat: repeat-y"></div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
Loading…
Add table
Add a link
Reference in a new issue