Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / crash-clearSelection-collapsed-borders.html
blobc44bd249deb37a10a5ecf67b734285d5eb241a0a
1 <!DOCTYPE html>
2 <table style="border-collapse: collapse">
3 <td id=c0>
4 <span>
5 <a href="https://bugs.webkit.org/show_bug.cgi?id=95487">95487</a>: Crash in LayoutTable::calcBorderEnd<br/>
6 This test has PASSED if it didn't crash.
7 </span>
8 </td>
9 <td id=c1></td>
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
14 var selection = window.getSelection();
15 selection.setBaseAndExtent(c0, 0, c1, 0);
16 c1.style.display = 'none';
17 </script>