summaryrefslogtreecommitdiffstats
path: root/dom/events/test/clipboard/simple_navigator_clipboard_keydown.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/events/test/clipboard/simple_navigator_clipboard_keydown.html')
-rw-r--r--dom/events/test/clipboard/simple_navigator_clipboard_keydown.html15
1 files changed, 15 insertions, 0 deletions
diff --git a/dom/events/test/clipboard/simple_navigator_clipboard_keydown.html b/dom/events/test/clipboard/simple_navigator_clipboard_keydown.html
new file mode 100644
index 0000000000..15fcdfba2c
--- /dev/null
+++ b/dom/events/test/clipboard/simple_navigator_clipboard_keydown.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta charset="utf-8">
+ <script>
+ function onLoad() {
+ document.addEventListener("keydown", function() {
+ navigator.clipboard.readText();
+ });
+ }
+ </script>
+ </head>
+ <body onload="onLoad()">
+ </body>
+</html>