outline-style-011

outline-style - dotted (basic)

WeasyPrint

Reference (good) by WeasyPrint

Reference (good) by this browser

This browser

Assertion
Test checks that the outline style is dotted when outline-style set dotted

Source

 1 <!DOCTYPE html>
 2 <html><head><meta charset="utf-8">
 3 <title>CSS Basic User Interface Test: outline-style - dotted (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-011-ref.htm" rel="match">
 9 <meta content="" name="flags">
10 <meta content="Test checks that the outline style is dotted when outline-style set dotted" name="assert">
11 <style>
12   #test {
13     height: 100px;
14     margin: 30px;
15     outline-color: green;
16     outline-style: dotted;
17     outline-width: 4px;
18     width: 100px;
19   }
20 </style>
21 </head><body>
22   <p>Test passes if there is a blank square with <strong>a green dotted</strong> border.</p>
23   <div id="test"></div>
24 
25 </body></html>