diff options
Diffstat (limited to 'brokenlinks/testdata/web')
| -rw-r--r-- | brokenlinks/testdata/web/index.html | 10 | ||||
| -rw-r--r-- | brokenlinks/testdata/web/page2/index.html | 10 |
2 files changed, 16 insertions, 4 deletions
diff --git a/brokenlinks/testdata/web/index.html b/brokenlinks/testdata/web/index.html index 4eaf3ed..6952dd1 100644 --- a/brokenlinks/testdata/web/index.html +++ b/brokenlinks/testdata/web/index.html @@ -4,8 +4,14 @@ SPDX-License-Identifier: GPL-3.0-only --> <html> <body> - <img src="/broken.png" /> - <a href="/brokenPage">Broken page</a> + <div> + <img src="/broken.png" /> + </div> + <div> + <div> + <a href="/brokenPage">Broken page</a> + </div> + </div> <img src="/gopher.png" /> <img width="200" src="" /> <a href="/page2">Page 2</a> diff --git a/brokenlinks/testdata/web/page2/index.html b/brokenlinks/testdata/web/page2/index.html index ae6b4ea..f75b89c 100644 --- a/brokenlinks/testdata/web/page2/index.html +++ b/brokenlinks/testdata/web/page2/index.html @@ -4,8 +4,14 @@ SPDX-License-Identifier: GPL-3.0-only --> <html> <body> - <img src="/broken.png" /> - <img src="broken2.png" /> + <div> + <img src="/broken.png" /> + </div> + <div> + <div> + <img src="broken2.png" /> + </div> + </div> <a href="broken/relative">broken relative link</a> <a href="/">Back with absolute path</a> <a href="../">Back with relative path</a> |
