Index: third_party/WebKit/LayoutTests/editing/deleting/merge-paragraph-from-p-with-style.html |
diff --git a/third_party/WebKit/LayoutTests/editing/deleting/merge-paragraph-from-p-with-style.html b/third_party/WebKit/LayoutTests/editing/deleting/merge-paragraph-from-p-with-style.html |
deleted file mode 100644 |
index c740d9edccb8167086980e74815e4d127c78a6a5..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/editing/deleting/merge-paragraph-from-p-with-style.html |
+++ /dev/null |
@@ -1,31 +0,0 @@ |
-<!DOCTYPE html> |
-<html> |
-<head> |
-<style type="text/css"> |
-p {color: red;} |
-</style> |
-</head> |
-<body> |
-<p id="description">This tests deleting line break before p. |
-"world" in "helloworld" should be italicized in red.</p> |
-<div id="test" contenteditable> |
-hello |
-<p style="font-style: italic;">world</p> |
-</div> |
-</div> |
-<script src="../editing.js"></script> |
-<script src="../../resources/dump-as-markup.js"></script> |
-<script> |
- |
-function editingTest() { |
- moveSelectionForwardByLineCommand(); |
- deleteCommand(); |
- |
- Markup.description(document.getElementById('description').textContent); |
- Markup.dump('test'); |
-} |
- |
-runEditingTest(); |
-</script> |
-</body> |
-</html> |