a
(anchor) elements that contains any text will generate this error.
Question | Is this link text meaningful when read alone (out of context)? |
---|---|
PASS | Link text is meaningful when read alone (out of context). |
FAIL | Link text is not meaningful when read alone (out of context). |
a
(anchor) element that contains one or more characters.<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>OAC Testfile - Check #19 - Negative</title> </head> <body> <p>We have more information about <a href="dogs.html">dogs</a></p> </body> </html>
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>OAC Testfile - Check #19 - Positive</title> </head> <body> <p>We have more information <a href="dogs.html">about</a> dogs.</p> </body> </html>