marker-text-emphasis-ref.html (1015B)
1 <!DOCTYPE html> 2 <meta charset="utf-8" /> 3 <title>CSS Reftest Reference</title> 4 <link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com" /> 5 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 6 <style> 7 ol { 8 float: left; 9 width: 50px; 10 list-style: none; 11 line-height: 2; 12 } 13 .text-emphasis-shorthand { 14 -webkit-text-emphasis: circle green; 15 text-emphasis: circle green; 16 } 17 .text-emphasis-longhands { 18 -webkit-text-emphasis-style: circle; 19 -webkit-text-emphasis-color: green; 20 -webkit-text-emphasis-position: under right; 21 text-emphasis-style: circle; 22 text-emphasis-color: green; 23 text-emphasis-position: under right; 24 } 25 </style> 26 <ol class="text-emphasis-shorthand"> 27 <li>1. </li> 28 <li>2. </li> 29 <li>3. </li> 30 </ol> 31 <ol class="text-emphasis-shorthand"> 32 <li>1. </li> 33 <li>2. </li> 34 <li>3. </li> 35 </ol> 36 <ol class="text-emphasis-longhands"> 37 <li>1. </li> 38 <li>2. </li> 39 <li>3. </li> 40 </ol> 41 <ol class="text-emphasis-longhands"> 42 <li>1. </li> 43 <li>2. </li> 44 <li>3. </li> 45 </ol>