Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / lists / list-style-none-crash.html
blob78576e497aa798f14d3ecf689a16fe90c394d345
1 <html>
2 <head>
3 <style>
4 li { list-style: none; }
5 </style>
7 <script>
8 function hide()
10 document.getElementById("list").style.display = "none";
12 </script>
13 </head>
15 <body onload="hide()">
16 <p>This test verifies that setting a list with list-style: none to
17 display: none does not crash. It checks for regression against <a
18 href="https://bugs.webkit.org/show_bug.cgi?id=6860">6860</a></p>
20 <ol id="list">
21 <li></li>
22 <li></li>
23 </ol>
24 </body>
25 </html>