Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 <!-- Any copyright is dedicated to the Public Domain.
2 http://creativecommons.org/publicdomain/zero/1.0/ -->
3 <html>
4 <head>
6 <link href="./doc_urls_clickable.css" rel="stylesheet" type="text/css">
8 <style>
9 .relative2 {
10 background-image: url(doc_test_image.png);
11 }
12 </style>
13 </head>
14 <body>
16 <div class="relative1">Background image #1 with relative path (loaded from external css)</div>
18 <div class="relative2">Background image #2 with relative path (loaded from style tag)</div>
20 <div class="absolute">Background image with absolute path (loaded from external css)</div>
22 <div class="base64">Background image with base64 url (loaded from external css)</div>
24 <div class="inline" style="background: url(doc_test_image.png);">Background image with relative path (loaded from style attribute)</div>
26 <div class="inline-resolved" style="background-image: url(./doc_test_image.png)">Background image with resolved relative path (loaded from style attribute)</div>
28 <div class="noimage">No background image :(</div>
29 </body>
30 </html>