aboutsummaryrefslogtreecommitdiffstats
path: root/tests/html/background.html
blob: b574bd427ae3321d6fd5e8697f1f4ae082b156a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<html>
    <head>
        <title></title>
    </head>
    <style>
        .test { background: url(rust-0.png) gray; }
    </style>
    <body>
        <div class="test" style="width:200px; height:200px; color:red;">
            background: url(rust-0.png) gray; width:200px; height:200px;
        </div>
        <div class="test" style="background-image: url(rust-45.png); width:200px; height:200px; color:red;">
            background-image: url(rust-45.png); width:200px; height:200px;
        </div>
        <div style="background: url(rust-90.png) yellow; width:200px; height:200px; border: 5px solid #000; color:blue;">
            background: url(rust-90.png) yellow; width:200px; height:200px; border: 5px solid #000;
        </div>
    </body>
</html>