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

Unified Diff: sky/tests/editing/backspace.sky

Issue 1215063003: Remove Sky tests that we don't intend to port to the new world (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 6 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: sky/tests/editing/backspace.sky
diff --git a/sky/tests/editing/backspace.sky b/sky/tests/editing/backspace.sky
deleted file mode 100644
index b2a1ad9ceffeb703ec9095916a2a9861947a2740..0000000000000000000000000000000000000000
--- a/sky/tests/editing/backspace.sky
+++ /dev/null
@@ -1,22 +0,0 @@
-<body>
-<style>
-.blue {
- border: 2px solid blue;
-}
-</style>
-<p class="blue" contenteditable></p>
-<script>
-import "../resources/event-sender.dart" as eventSender;
-import "dart:sky";
-import "package:mojom/mojo/input_key_codes.mojom.dart";
-
-void main() {
- var control = document.querySelector('.blue');
- control.focus();
- eventSender.keyDown(KeyboardCode_A);
- eventSender.keyDown(KeyboardCode_B);
- eventSender.keyDown(KeyboardCode_BACK);
- eventSender.done();
-}
-</script>
-</body>

Powered by Google App Engine
This is Rietveld 408576698