chromium/third_party/blink/web_tests/external/wpt/css/css-lists/nested-list-with-list-style-type-none.html

<meta charset="utf-8">
<title>CSS Lists: test the margin collapse of marker</title>
<link rel=help href="https://www.w3.org/TR/CSS22/generate.html#lists">
<link rel="help" href="http://crbug.com/985298">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<style>
li {
  list-style-type:none;
  list-style-image:url(images/white.gif);
}
</style>
<body>
  <p>PASS if no crash or DCHECK failure in quirks mode.</p>
  <ul>
    <li>
      <ul></ul>
    </li>
  </ul>
  <script type="text/javascript">
    setup({ single_test: true });
    // TODO(jugglinmike): If accepted, WPT RFC #33 will introduce a new test
    // type intended to simplify tests like this one. Refactor this test to the
    // new test type following its acceptance.
    // https://github.com/web-platform-tests/rfcs/pull/33
    done();
  </script>
</body>