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

Unified Diff: Source/WebKit/chromium/tests/data/select_range_basic.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/select_range_basic.html
diff --git a/Source/WebKit/chromium/tests/data/select_range_basic.html b/Source/WebKit/chromium/tests/data/select_range_basic.html
deleted file mode 100644
index 8ffc3fc2fde30f8e704b7af172d73523a02b3e17..0000000000000000000000000000000000000000
--- a/Source/WebKit/chromium/tests/data/select_range_basic.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<!DOCTYPE html>
-<html>
-<body>
-Some extra text.
-<span id='target'>Some test text for testing.</span>
-Some extra text.
-<script>
- function select() {
- var range = document.createRange();
- range.selectNode(document.getElementById('target'));
- window.getSelection().addRange(range);
- }
- window.onload = select;
-</script>
-</body>
-</html>
-

Powered by Google App Engine
This is Rietveld 408576698