Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(549)

Unified Diff: third_party/WebKit/LayoutTests/fast/dom/Selection/use-counters.html

Issue 2712603003: Move tests in fast/dom/Selection/ to editing/selection/. (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/dom/Selection/selection-interface.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/dom/Selection/selection-interface.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698