img
elements have associated images that do not flicker.
img
elements that contain a src
attribute value that ends with ".gif" (case insensitive). and have a width and height larger than 25.
Question | Does this image flicker? |
---|---|
PASS | Image does not flicker. |
FAIL | Image does flicker. |
img
element that has a src
attribute value ending in '.gif'.img
elements have associated images that do not flicker.<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html lang="en"> <head> <title>ATRC Testfile - Check #10.2 - Negative</title> </head> <body> <img src="rex.gif" alt="A brown and black cat named Rex."/> </body> </html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html lang="en"> <head> <title>ATRC Testfile - Check #10.1 - Positive</title> </head> <body> <img src="eatatjoes.gif" alt="eat at Joes" width="200" height="200"/> </body> </html>