<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>CSS Test: Content with a url() to an image as a value</title> <link rel="author" title="Microsoft" href="http://www.microsoft.com/"> <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-content"> <link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#content"> <meta name="flags" content="image"> <meta name="assert" content="The 'content' property properly handles the 'url()' function as a value."> <style type="text/css"> div:before { content: url('support/green15x15.png'); } </style> </head> <body> <p>Test passes if there is a green box below.</p> <div></div> </body> </html>