Index: LayoutTests/editing/undo/undo-set-selection-crash.html |
diff --git a/LayoutTests/editing/execCommand/format-block-crash.html b/LayoutTests/editing/undo/undo-set-selection-crash.html |
similarity index 74% |
copy from LayoutTests/editing/execCommand/format-block-crash.html |
copy to LayoutTests/editing/undo/undo-set-selection-crash.html |
index 881a6d825320d1a326b41802abcf516e9c6860b9..975f84f4e94c1cc37e108503dd5fbdef54bc11d1 100644 |
--- a/LayoutTests/editing/execCommand/format-block-crash.html |
+++ b/LayoutTests/editing/undo/undo-set-selection-crash.html |
@@ -1,19 +1,18 @@ |
<!DOCTYPE html> |
<html> |
<head> |
-<title>FormatBlock crash</title> |
<script src="../../resources/js-test.js"></script> |
</head> |
<body> |
<script> |
-description('Should not crash if we load a test case from crbug.com/345005.'); |
+description('Undo command should not make a selection anchored in another document.'); |
window.jsTestIsAsync = true; |
window.addEventListener('message', didReceiveMessage, false); |
var iframe = document.createElement('iframe'); |
-iframe.src = 'resources/format-block-crash-iframe.html'; |
+iframe.src = 'resources/undo-set-selection-crash-iframe.html'; |
document.body.appendChild(iframe); |
function didReceiveMessage(event) |