summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-lists/nested-list-with-list-style-type-none.html
blob: 325459df8a2bdb5e23083fe6ee3961dde0fd2027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<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>