1 <!DOCTYPE html>
2 <html><head><meta charset="utf-8">
3 <title>CSS Basic User Interface Test: outline-style - double (basic)</title>
4 <link href="http://www.intel.com/" rel="author" title="Intel">
5 <link href="mailto:shiyoux.tan@intel.com" rel="author" title="Shiyou Tan">
6 <link href="http://www.w3.org/TR/css3-ui/#outline-style" rel="help" title="7.3. 'outline-style' property">
7 <link href="http://www.w3.org/TR/CSS21/box.html#value-def-border-style" rel="help">
8 <link href="reference/outline-style-014-ref.htm" rel="match">
9 <meta content="" name="flags">
10 <meta content="Test checks that the outline style is two solid lines when outline-style set double" name="assert">
11 <style>
12 #test {
13 height: 150px;
14 margin: 30px;
15 outline-color: green;
16 outline-style: double;
17 outline-width: 4px;
18 width: 150px;
19 }
20 </style>
21 </head><body>
22 <p>Test passes if there is a blank square whose border is <strong>two green solid lines</strong>.</p>
23 <div id="test"></div>
24
25 </body></html>