Index: third_party/WebKit/Source/web/tests/data/composited_selection_bounds_empty_layer.html |
diff --git a/third_party/WebKit/Source/web/tests/data/composited_selection_bounds_empty_layer.html b/third_party/WebKit/Source/web/tests/data/composited_selection_bounds_empty_layer.html |
deleted file mode 100644 |
index 681a73c3303e86079dca0dd6319afb32da4723fe..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/Source/web/tests/data/composited_selection_bounds_empty_layer.html |
+++ /dev/null |
@@ -1,14 +0,0 @@ |
-<object width="0" height="0" id="emptyLayer"/> |
-<script> |
- var range = document.createRange(); |
- var emptyLayer = document.getElementById("emptyLayer"); |
- var textNode1 = layer1.firstChild; |
- range.setStart(textNode1, 0); |
- range.collapse(); |
- document.getSelection().addRange(range); |
- |
- // Even though the logical caret activated by the selection has an empty |
- // area, it should still propagate as a valid selection region. |
- window.expectedResult = [emptyLayer, 8, 8, 8, 8, emptyLayer, 8, 8, 8, 8, false, false]; |
-</script> |
- |