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

Unified Diff: Source/WebKit/chromium/tests/data/text_selection.html

Issue 19906002: Move data/ directory from WebKit/chromium/tests into web/tests/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 5 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: Source/WebKit/chromium/tests/data/text_selection.html
diff --git a/Source/WebKit/chromium/tests/data/text_selection.html b/Source/WebKit/chromium/tests/data/text_selection.html
deleted file mode 100644
index f605e9a54f00746b6f32b1b22719f1803b902472..0000000000000000000000000000000000000000
--- a/Source/WebKit/chromium/tests/data/text_selection.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-
-<span id="header">[
-<span id="header_1">Header 1.</span>
-<span id="header_2">Header 2.</span>
-]</span>
-
-<span id="editable" contenteditable="true">[
-<span id="editable_1">Editable 1.</span>
-<span id="editable_2">Editable 2.</span>
-]</span>
-
-<span id="footer">[
-<span id="footer_1">Footer 1.</span>
-<span id="footer_2">Footer 2.</span>
-]</span>
-
-<script>
-function selectElement(id) {
- var element = document.getElementById(id);
- var range = document.createRange();
- range.selectNode(document.getElementById(id));
- window.getSelection().removeAllRanges();
- window.getSelection().addRange(range);
-}
-</script>
-</body>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698