Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / accessibility / table-with-empty-thead-causes-crash.html
blob23a83a09207fea5981b27f89174cf6c66295b2c6
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
2 <html>
3 <head>
4 <script src="../resources/js-test.js"></script>
5 <script src="../resources/accessibility-helper.js"></script>
6 </head>
7 <body>
9 <table summary="table">
10 <thead>
11 </thead>
12 <tr><td>1</td><td>2</td></tr>
13 </table>
15 <p>End of test</p>
16 <p id="description"></p>
17 <div id="console"></div>
19 <script>
20 description("Construct accessibility objects for a table with an empty thread tag. This can cause a crash.");
22 if (window.accessibilityController) {
23 document.body.focus();
24 buildAccessibilityTree(accessibilityController.focusedElement, 0, 0, ['AXColumn', 'AXTableHeaderContainer']);
27 </script>
29 </body>
30 </html>