summaryrefslogtreecommitdiff
path: root/dom/bindings/test/file_focuser.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/bindings/test/file_focuser.html')
-rw-r--r--dom/bindings/test/file_focuser.html24
1 files changed, 0 insertions, 24 deletions
diff --git a/dom/bindings/test/file_focuser.html b/dom/bindings/test/file_focuser.html
deleted file mode 100644
index 0d5240f95b..0000000000
--- a/dom/bindings/test/file_focuser.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE HTML>
-<div id="stage"></div>
-<script>
- function stage(str) {
- var s = document.getElementById("stage");
- s.textContent = str;
- }
- stage("before");
- setTimeout(function() {
- stage("in timeout");
- });
- setInterval(function() {
- stage("in interval");
- });
- addEventListener("keydown", function() {
- stage("keydown");
- }, false);
- try {
- focus();
- stage("after");
- } catch(e) {
- stage("exception raised");
- }
-</script>