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

Unified Diff: ManualTests/qt/numpad-enter-key.html

Issue 18045005: Remove qt and gtk manual tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: 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
« no previous file with comments | « ManualTests/qt/main.html ('k') | ManualTests/qt/plugin-iframe.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ManualTests/qt/numpad-enter-key.html
diff --git a/ManualTests/qt/numpad-enter-key.html b/ManualTests/qt/numpad-enter-key.html
deleted file mode 100644
index ea9b800a32b8860960ff39a94bb9eb22133a655b..0000000000000000000000000000000000000000
--- a/ManualTests/qt/numpad-enter-key.html
+++ /dev/null
@@ -1,22 +0,0 @@
-<html>
-<head>
- <script type="text/javascript">
- window.onload = function() {
- document.getElementById('test').addEventListener('keypress', function(e) {
- out = document.getElementById('out');
- out.innerHTML = 'keyCode: ' + e.keyCode + ' (should be 13)';
- if (e.keyCode == 13)
- out.style.background = '#6f6';
- else
- out.style.background = '#f66';
- }, false);
- document.getElementById('test').focus()
- };
- </script>
-</head>
-<body>
- <p>Press the numpad Enter key while the input box below is focused:</p>
- <p><input type="text" id="test" /></p>
- <p id="out"></p>
-</body>
-</html>
« no previous file with comments | « ManualTests/qt/main.html ('k') | ManualTests/qt/plugin-iframe.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698