diff options
| author | Shulhan <ms@kilabit.info> | 2026-02-11 04:40:35 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2026-02-11 21:45:06 +0700 |
| commit | ded0c89eea2ff0193f7916db35e3f600d24842ff (patch) | |
| tree | 54276667ae8aa557252236327d78b740751d8ca0 /brokenlinks/testdata/web/page2 | |
| parent | 61eb5351087be894a4bfeb71c99346b8065bb7f1 (diff) | |
| download | jarink-ded0c89eea2ff0193f7916db35e3f600d24842ff.tar.xz | |
brokenlinks: test links that wrapped by other elements
This is to see the behaviour of [Node.Descendants] when traversing
the element recursively.
Diffstat (limited to 'brokenlinks/testdata/web/page2')
| -rw-r--r-- | brokenlinks/testdata/web/page2/index.html | 10 |
1 files changed, 8 insertions, 2 deletions
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> |
