<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>CSS Test: Background-repeat set to 'repeat-x'</title> <link rel="author" title="Microsoft" href="http://www.microsoft.com/"> <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <!-- 2012-05-04 --> <link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#background-properties"> <link rel="help" href="http://www.w3.org/TR/CSS21/colors.html#propdef-background-repeat"> <link rel="match" href="reference/background-repeat-002-ref.htm"> <meta name="flags" content="image"> <meta name="assert" content="Background-repeat set to 'repeat-x' repeats the image horizontally to fill the space."> <style type="text/css"> div { background-color: black; background-image: url("support/blue15x15.png"); background-repeat: repeat-x; height: 200px; } </style> </head> <body> <p>Test passes if there is an horizontal blue stripe directly above a filled black rectangle.</p> <div></div> </body> </html>