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