Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / css / css-image-loading.html
blob7ed134161781bead487aef5e3515f39fd97e670b
1 <html>
2 <head>
3 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
4 <script src="resources/request-logging.js" type="text/javascript" charset="utf-8"></script>
6 <style type="text/css">
7 .box {
8 height: 100px;
9 width: 100px;
10 background-image: url("/resources/network-simulator.php?command=log-resource-request&path=background1.jpg");
13 .background {
14 background-image: url("/resources/network-simulator.php?command=log-resource-request&path=background2.jpg");
17 .content {
18 content: url("/resources/network-simulator.php?command=log-resource-request&path=content-image1.jpg");
21 .test {
22 content: url("/resources/network-simulator.php?command=log-resource-request&path=content-image2.jpg") "foopy" url("/resources/network-simulator.php?command=log-resource-request&path=content-image3.jpg");
25 ul {
26 list-style-image: url("/resources/network-simulator.php?command=log-resource-request&path=list-image1.jpg");
28 .list {
29 list-style-image: url("/resources/network-simulator.php?command=log-resource-request&path=list-image2.jpg");
32 </style>
33 </head>
34 <body>
36 <div class="box background"></div>
37 <div class="content test"></div>
38 <ul class="list"><li>item</li></div>
40 <h2>Resource requests:</h2>
41 <pre id="result">Request log goes here in DRT</pre>
42 </body>
43 </html>