Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / editing / execCommand / outdent-collapse-table-crash-2.html
blobc9161374c9e3ccd79a144b42976ee65177877ed2
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 * {
6 visibility: visible;
9 *:only-of-type {
10 visibility: collapse;
12 </style>
13 <script>
14 if (window.testRunner)
15 testRunner.dumpAsText();
17 onload = function() {
18 document.designMode = 'on';
19 var blockQuote = document.querySelector('blockquote');
20 getSelection().collapse(blockQuote, 2);
21 document.execCommand('Outdent');
22 document.documentElement.textContent = 'PASS if Blink doesn\'t crash.';
24 </script>
25 </head>
26 <body>
27 <blockquote>
28 <table><tr><td>foo</td></tr></table>
29 <table><tr><td>bar</td></tr></table>
30 </blockquote>
31 </body>
32 </html>