OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <style> |
| 5 * { |
| 6 -webkit-appearance: media-controls-background; |
| 7 display: table-footer-group; |
| 8 visibility: visible; |
| 9 } |
| 10 |
| 11 *:only-of-type { |
| 12 visibility: collapse; |
| 13 } |
| 14 </style> |
| 15 <script> |
| 16 if (window.testRunner) |
| 17 testRunner.dumpAsText(); |
| 18 |
| 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.'; |
| 25 }; |
| 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> |
OLD | NEW |