Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / crash-split-table-section-no-cell-recalc.html
blob30ddfb93f1362e1f149cf1e3c485728123dc01d1
1 <!DOCTYPE html>
2 <html>
3 A<div></div>
4 <div id="div1"></div>
5 <style>
6 * { display: table-cell; }
7 .class1 { -webkit-appearance: sliderthumb-vertical; }
8 </style>
9 <script>
10 if (window.testRunner)
11 testRunner.dumpAsText();
13 document.addEventListener("DOMContentLoaded", crash, false);
14 function crash() {
15 div1 = document.getElementById("div1");
16 div1.style.display = "table-row-group";
17 document.documentElement.offsetTop;
18 div1.setAttribute("class", "class1");
19 document.documentElement.offsetTop;
20 document.documentElement.innerHTML = "<a href='https://bugs.webkit.org/show_bug.cgi?id=94291'>94291</a>: Crash in LayoutTableSection::setCellLogicalWidths<br/>This test has PASSED as it didn't CRASH or ASSERT.";
22 </script>
23 </html>