<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>CSS Test: Outline-right is not valid</title> <link rel="author" title="Microsoft" href="http://www.microsoft.com/"> <link rel="help" href="http://www.w3.org/TR/CSS21/ui.html#dynamic-outlines"> <meta name="flags" content="invalid"> <meta name="assert" content="Outline does not support setting individual values for the outline like 'outline-right'."> <style type="text/css"> div { background: black; height: 100px; margin: 40px; outline-right: 10px solid red; width: 100px; } </style> </head> <body> <p>Test passes if there is no red visible on the page.</p> <div></div> </body> </html>