Skip to content

Commit

Permalink
more tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rbri committed Jan 7, 2024
1 parent 1b34605 commit d552dc3
Show file tree
Hide file tree
Showing 16 changed files with 110 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<body><a>target<div>content
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
(HTML
(head
)head
(body
(a
"target
(div
"content
)div
)a
)body
)HTML
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<body><a>target<div>
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
(HTML
(head
)head
(body
(a
"target
(div
)div
)a
)body
)HTML
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<body><a><div>content
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
(HTML
(head
)head
(body
(a
(div
"content
)div
)a
)body
)HTML
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<body><a><div>
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
(HTML
(head
)head
(body
(a
(div
)div
)a
)body
)HTML
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<a href=foo>hello <div>new</div><a name="foo">world</a></a>
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
(HTML
(head
)head
(BODY
(a
Ahref foo
"hello
(div
"new
)div
)a
(a
Aname foo
"world
)a
)BODY
)HTML
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<a href=foo>hello <span>new</span><a name="foo">world</a></a>
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
(HTML
(head
)head
(BODY
(a
Ahref foo
"hello
(span
"new
)span
)a
(a
Aname foo
"world
)a
)BODY
)HTML
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<html><div>x</div><body><div>y</div></html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
(html
(head
)head
(BODY
(div
"x
)div
(div
"y
)div
)BODY
)html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<html><div id='1'></div><body><div id='2'></div></html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
(html
(head
)head
(BODY
(div
Aid 1
)div
(div
Aid 2
)div
)BODY
)html

0 comments on commit d552dc3

Please sign in to comment.