-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d653f2c
commit 9813a61
Showing
8 changed files
with
170 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<html> | ||
<head> | ||
<base href="http://another.fake.local/" /> | ||
<base href="./unused" /> | ||
</head> | ||
<body> | ||
<a href="ok">relative link</a> | ||
<a href="broken">relative link</a> | ||
<a href="./ok">relative link</a> | ||
<a href="./broken">relative link</a> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<html> | ||
<head> | ||
<base href="" /> | ||
</head> | ||
<body> | ||
<a href="ok">relative link</a> | ||
<a href="broken">relative link</a> | ||
<a href="./ok">relative link</a> | ||
<a href="./broken">relative link</a> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<html> | ||
<head> | ||
<base href="./anotherBase/" /> | ||
</head> | ||
<body> | ||
<a href="ok">relative link</a> | ||
<a href="broken">relative link</a> | ||
<a href="./ok">relative link</a> | ||
<a href="./broken">relative link</a> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<html> | ||
<head> | ||
<base href="anotherBase/" /> | ||
</head> | ||
<body> | ||
<a href="ok">relative link</a> | ||
<a href="broken">relative link</a> | ||
<a href="./ok">relative link</a> | ||
<a href="./broken">relative link</a> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<html> | ||
<head> | ||
<base href="anotherBase" /> | ||
</head> | ||
<body> | ||
<a href="ok">relative link</a> | ||
<a href="broken">relative link</a> | ||
<a href="./ok">relative link</a> | ||
<a href="./broken">relative link</a> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<html> | ||
<head> | ||
<base href="/anotherBase/" /> | ||
</head> | ||
<body> | ||
<a href="ok">relative link</a> | ||
<a href="broken">relative link</a> | ||
<a href="./ok">relative link</a> | ||
<a href="./broken">relative link</a> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters