| Index: LayoutTests/editing/execCommand/justify-center-empty-list-crash.html
|
| diff --git a/LayoutTests/editing/execCommand/indent-table-cell-crash.html b/LayoutTests/editing/execCommand/justify-center-empty-list-crash.html
|
| similarity index 50%
|
| copy from LayoutTests/editing/execCommand/indent-table-cell-crash.html
|
| copy to LayoutTests/editing/execCommand/justify-center-empty-list-crash.html
|
| index 573bf049d27f0bfa2dea1d331e89f663654f8bc1..760f54d28b5350573dac0173529857542da1e485 100644
|
| --- a/LayoutTests/editing/execCommand/indent-table-cell-crash.html
|
| +++ b/LayoutTests/editing/execCommand/justify-center-empty-list-crash.html
|
| @@ -1,21 +1,23 @@
|
| <!DOCTYPE html>
|
| +<html>
|
| <head>
|
| -<style>
|
| -hr { display: table-cell; }
|
| -</style>
|
| <script>
|
| if (window.testRunner)
|
| testRunner.dumpAsText();
|
|
|
| onload = function() {
|
| - document.designMode = 'on';
|
| - document.execCommand('SelectAll');
|
| - document.execCommand('Indent');
|
| + document.designMode = "on";
|
| + document.execCommand("SelectAll");
|
| + document.execCommand("JustifyCenter");
|
| document.body.textContent = 'PASS if Blink doesn\'t crash.';
|
| };
|
| </script>
|
| </head>
|
| <body>
|
| -before<hr><hr>after
|
| +<ul style="height: 20px;"></ul>
|
| +<div>
|
| + <div></div>
|
| + <a target="foo">more</a>
|
| +</div>
|
| </body>
|
| </html>
|
|
|