outline-focus-001.xht (1388B)
1 <!DOCTYPE html PUBLIC "-//W3C//DTD//XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <title>CSS Test: Default outlines and interactive media groups</title> 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> 6 <link rel="help" href="http://www.w3.org/TR/CSS21/ui.html#outline-focus" /> 7 <link rel="help" href="http://www.w3.org/TR/CSS21/media.html#interactive-media-group" /> 8 <link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#dynamic-pseudo-classes" /> 9 <meta name="flags" content="interact may" /> 10 <meta name="assert" content="Interactive media groups may show a focus outline to indicate that focus has been set on an element." /> 11 <style type="text/css"> 12 div 13 { 14 background: red; 15 } 16 div:focus 17 { 18 background: lime; 19 } 20 </style> 21 </head> 22 <body> 23 <p>PREREQUISITE: Set focus on the element below.</p> 24 <p>Test passes if the element below (when it has focus) has a green background and it may also have an indication that focus has been set to the element (typically a dotted outline or a different color outline).</p> 25 <div tabindex="0">Set focus here</div> 26 </body> 27 </html>