Index: third_party/WebKit/LayoutTests/fast/dom/Selection/use-counters.html |
diff --git a/third_party/WebKit/LayoutTests/fast/dom/Selection/use-counters.html b/third_party/WebKit/LayoutTests/fast/dom/Selection/use-counters.html |
deleted file mode 100644 |
index 352726cb19073c57886b0bd6f4351f955ad3ff3c..0000000000000000000000000000000000000000 |
--- a/third_party/WebKit/LayoutTests/fast/dom/Selection/use-counters.html |
+++ /dev/null |
@@ -1,19 +0,0 @@ |
-<!DOCTYPE html> |
-<title>Selection UseCounters</title> |
-<script src="../../../resources/testharness.js"></script> |
-<script src="../../../resources/testharnessreport.js"></script> |
-<script> |
-test(function() { |
- var SelectionCollapseNull = 1083; // From UseCounter.h |
- assert_false(internals.isUseCounted(document, SelectionCollapseNull)); |
- document.getSelection().collapse(null, -1); |
- assert_true(internals.isUseCounted(document, SelectionCollapseNull)); |
-}, 'selection.collapse(null, -1)'); |
- |
-test(function() { |
- var SelectionSetBaseAndExtentNull = 1084; // From UseCounter.h |
- assert_false(internals.isUseCounted(document, SelectionSetBaseAndExtentNull)); |
- document.getSelection().setBaseAndExtent(null, 0, null, 0) |
- assert_true(internals.isUseCounted(document, SelectionSetBaseAndExtentNull)); |
-}, 'selection.setBaseAndExtent(null, 0, null, 0)'); |
-</script> |