blob: d45a16d4fdac1a1abb96512346f560f921304f4a [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://w3c.github.io/uievents/#idl-def-KeyboardEventInit
dictionary KeyboardEventInit : EventModifierInit {
[RuntimeEnabled=KeyboardEventKey] DOMString key = "";
[RuntimeEnabled=KeyboardEventCode] DOMString code = "";
unsigned long location = 0;
boolean repeat = false;
// TODO(philipj): boolean isComposing = false;
// Non-standard APIs
DOMString keyIdentifier = "";
};