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

Unified Diff: LayoutTests/platform/chromium-linux/editing/selection/linux_selection_color.html

Issue 14860019: Move Linux-specific LayoutTests to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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
Index: LayoutTests/platform/chromium-linux/editing/selection/linux_selection_color.html
diff --git a/LayoutTests/platform/chromium-linux/editing/selection/linux_selection_color.html b/LayoutTests/platform/chromium-linux/editing/selection/linux_selection_color.html
deleted file mode 100644
index 8e90091a1e6900be7599c8f7055f67797f61d052..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium-linux/editing/selection/linux_selection_color.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-<body>
-<div>
-<p id="text">
-This tests that the methods that set selection colors for Linux work correctly.
-</p>
-<p>(All the text in the above sentence should be highlighted red with green text)</p>
-</div>
-<script>
-if (window.testRunner) {
- testRunner.forceRedSelectionColors()
-}
-
-var div = document.getElementById("text");
-var sel = window.getSelection();
-var range = document.createRange();
-range.selectNode(div);
-sel.addRange(range);
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698