link
element that has a rel
attribute with a value of "stylesheet".
Question | Is this page readable when stylesheets are removed? |
---|---|
PASS | Page is readable when stylesheets are removed. |
FAIL | Page is not readable when stylesheets are removed. |
link
elements that have a rel
attribute value of "stylesheet".link
element does not have rel
attribute with value of "stylesheet".
<!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 #97 - Negative</title> <link href="docB" rel="foo"> </head> <body> </body> </html>
link
element has rel
attribute with value of "stylesheet".
<!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 #97 - Positive</title> <link href="docB" rel="stylesheet"> </head> <body> </body> </html>