-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 844 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Relative URL Test</title>
<link rel="stylesheet" type="text/css" href="styles/test.css" />
</head>
<body>
<section class="tick svg">
<h2>Relative SVG (/styles/../graphics/tick.svg)</h2>
<p>The area below should contain a tick.</p>
<div></div>
</section>
<section class="tick png">
<h2>Relative PNG (/styles/../graphics/tick.png)</h2>
<p>The area below should contain a tick.</p>
<div></div>
</section>
<section class="cross svg">
<h2>Relative SVG (/styles/./graphics/cross.svg)</h2>
<p>The area below should be empty.</p>
<div></div>
</section>
<section class="cross png">
<h2>Relative PNG (/styles/./graphics/cross.png)</h2>
<p>The area below should be empty.</p>
<div></div>
</section>
</body>
</html>