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.
michael@0 | 1 | <!-- Any copyright is dedicated to the Public Domain. |
michael@0 | 2 | http://creativecommons.org/publicdomain/zero/1.0/ --> |
michael@0 | 3 | <html> |
michael@0 | 4 | <head> |
michael@0 | 5 | |
michael@0 | 6 | <link href="./doc_urls_clickable.css" rel="stylesheet" type="text/css"> |
michael@0 | 7 | |
michael@0 | 8 | <style> |
michael@0 | 9 | .relative2 { |
michael@0 | 10 | background-image: url(doc_test_image.png); |
michael@0 | 11 | } |
michael@0 | 12 | </style> |
michael@0 | 13 | </head> |
michael@0 | 14 | <body> |
michael@0 | 15 | |
michael@0 | 16 | <div class="relative1">Background image #1 with relative path (loaded from external css)</div> |
michael@0 | 17 | |
michael@0 | 18 | <div class="relative2">Background image #2 with relative path (loaded from style tag)</div> |
michael@0 | 19 | |
michael@0 | 20 | <div class="absolute">Background image with absolute path (loaded from external css)</div> |
michael@0 | 21 | |
michael@0 | 22 | <div class="base64">Background image with base64 url (loaded from external css)</div> |
michael@0 | 23 | |
michael@0 | 24 | <div class="inline" style="background: url(doc_test_image.png);">Background image with relative path (loaded from style attribute)</div> |
michael@0 | 25 | |
michael@0 | 26 | <div class="inline-resolved" style="background-image: url(./doc_test_image.png)">Background image with resolved relative path (loaded from style attribute)</div> |
michael@0 | 27 | |
michael@0 | 28 | <div class="noimage">No background image :(</div> |
michael@0 | 29 | </body> |
michael@0 | 30 | </html> |