Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / lists / remove-listmarker-from-anonblock-with-continuation-crash.html
blob564464df07874dc677cc16619a0a6b731e304347
1 <style>
2 .listItem { display: list-item; text-decoration: none; -webkit-column-width: 10px; }
3 .colSpanAll { display: block; -webkit-column-span: all; }
4 .absPosition { display: inherit; position: absolute; }
5 </style>
6 <script>
7 theadElement = document.createElement('thead');
8 theadElement.setAttribute('class', 'listItem');
9 document.documentElement.appendChild(theadElement);
11 listItemElement = document.createElement('li');
12 listItemElement.appendChild(document.createTextNode('PASS if no crash or assert in debug'));
14 theadElement.appendChild(listItemElement);
15 theadElement.appendChild(document.createElement('progress'));
16 theadElement.appendChild(document.createElement('hgroup'));
18 document.documentElement.offsetHeight;
19 listItemElement.setAttribute('class', 'absPosition');
20 document.documentElement.offsetHeight;
21 listItemElement.setAttribute('class', 'colSpanAll');
23 if (window.testRunner)
24 testRunner.dumpAsText();
25 </script>