https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 12b6163dada31f7883839c25903e69566b9ef8b0 authored by Eugene Kim on 28 November 2018, 11:15:33 UTC
Change <area> element's style to display:none
Tip revision: 12b6163
list-marker-inside-whitespace-001.xml
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>CSS Test: list-style</title>
  <meta name="flags" content="ahem image" />
  <link rel="help" href="http://www.w3.org/TR/REC-CSS1#list-style"/>
  <link rel="author" title="CSS1 Test Suite Contributors" href="http://www.w3.org/Style/CSS/Test/CSS1/current/tsack.html"/>
  <link rel="author" title="Ian Hickson" href="mailto:ian@hixie.ch"/>
  <style type="text/css"><![CDATA[
   ul {
     margin: 1em 5em; border: solid black; padding: 0; width: 6em;
     font: 15px/1 Ahem; color: lime; background: red url(support/css1test566a.png) no-repeat;
     list-style: upper-alpha inside;
   }
   li { margin: 0; padding: 0; }
  ]]></style>
 </head>
 <body>
  <p>There should be no red below.</p>
  <ul class="one">
   <li> x x xx xx x x</li>
  </ul>
 </body>
</html>
back to top