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