<a href="dogs">dogs</a> | <a href="cats">cats</a>
a
(anchor) element for a following a
(anchor) element.a
(anchor) elements are adjacent then check if there is a printable character (not tab or 'space') between the 2 elements.a
(anchor) elements are expected to have at least one printable character between them.<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd"> <html lang="en"> <head> <title>OAC Testfile - Check #134 - Negative</title> </head> <body> <a href="dogs">dogs</a> | <a href="cats">cats</a> | <a href="birds">birds</a> | <a href="snakes">snakes</a> </body> </html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd"> <html lang="en"> <head> <title>OAC Testfile - Check #134 - Positive</title> </head> <body> <a href="dogs">dogs</a> <a href="cats">cats</a> <a href="birds">birds</a> <a href="snakes">snakes</a> </body> </html>