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

Side by Side Diff: Source/core/events/KeyboardEvent.cpp

Issue 933323002: Add experimental Support for DOM3 KeyboardEvent key value (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated global-interface-listing as test were failing due to addition of the key Created 5 years, 7 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 unified diff | Download patch
OLDNEW
1 /** 1 /**
2 * Copyright (C) 2001 Peter Kelly (pmk@post.com) 2 * Copyright (C) 2001 Peter Kelly (pmk@post.com)
3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) 3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de)
4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) 4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com)
5 * Copyright (C) 2003, 2005, 2006, 2007 Apple Inc. All rights reserved. 5 * Copyright (C) 2003, 2005, 2006, 2007 Apple Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 , m_isAutoRepeat(false) 99 , m_isAutoRepeat(false)
100 { 100 {
101 } 101 }
102 102
103 KeyboardEvent::KeyboardEvent(const PlatformKeyboardEvent& key, AbstractView* vie w) 103 KeyboardEvent::KeyboardEvent(const PlatformKeyboardEvent& key, AbstractView* vie w)
104 : UIEventWithKeyState(eventTypeForKeyboardEventType(key.type()), 104 : UIEventWithKeyState(eventTypeForKeyboardEventType(key.type()),
105 true, true, view, 0, key.ctrlKey(), key.altKey(), key. shiftKey(), key.metaKey()) 105 true, true, view, 0, key.ctrlKey(), key.altKey(), key. shiftKey(), key.metaKey())
106 , m_keyEvent(adoptPtr(new PlatformKeyboardEvent(key))) 106 , m_keyEvent(adoptPtr(new PlatformKeyboardEvent(key)))
107 , m_keyIdentifier(key.keyIdentifier()) 107 , m_keyIdentifier(key.keyIdentifier())
108 , m_code(key.code()) 108 , m_code(key.code())
109 , m_key(key.key())
109 , m_location(keyLocationCode(key)) 110 , m_location(keyLocationCode(key))
110 , m_isAutoRepeat(key.isAutoRepeat()) 111 , m_isAutoRepeat(key.isAutoRepeat())
111 { 112 {
112 setUICreateTime(key.timestamp()); 113 setUICreateTime(key.timestamp());
113 } 114 }
114 115
115 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, const KeyboardEventI nit& initializer) 116 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, const KeyboardEventI nit& initializer)
116 : UIEventWithKeyState(eventType, initializer.bubbles(), initializer.cancelab le(), initializer.view(), initializer.detail(), initializer.ctrlKey(), initializ er.altKey(), initializer.shiftKey(), initializer.metaKey()) 117 : UIEventWithKeyState(eventType, initializer.bubbles(), initializer.cancelab le(), initializer.view(), initializer.detail(), initializer.ctrlKey(), initializ er.altKey(), initializer.shiftKey(), initializer.metaKey())
117 , m_keyIdentifier(initializer.keyIdentifier()) 118 , m_keyIdentifier(initializer.keyIdentifier())
118 , m_location(initializer.location()) 119 , m_location(initializer.location())
119 , m_isAutoRepeat(initializer.repeat()) 120 , m_isAutoRepeat(initializer.repeat())
120 { 121 {
121 } 122 }
122 123
123 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view, 124 KeyboardEvent::KeyboardEvent(const AtomicString& eventType, bool canBubble, bool cancelable, AbstractView *view,
124 const String& keyIdentifier, const String& code, unsigned location, bool ctr lKey, bool altKey, bool shiftKey, bool metaKey) 125 const String& keyIdentifier, const String& code, const String& key, unsigned location, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
125 : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, al tKey, shiftKey, metaKey) 126 : UIEventWithKeyState(eventType, canBubble, cancelable, view, 0, ctrlKey, al tKey, shiftKey, metaKey)
126 , m_keyIdentifier(keyIdentifier) 127 , m_keyIdentifier(keyIdentifier)
127 , m_code(code) 128 , m_code(code)
129 , m_key(key)
128 , m_location(location) 130 , m_location(location)
129 , m_isAutoRepeat(false) 131 , m_isAutoRepeat(false)
130 { 132 {
131 } 133 }
132 134
133 KeyboardEvent::~KeyboardEvent() 135 KeyboardEvent::~KeyboardEvent()
134 { 136 {
135 } 137 }
136 138
137 void KeyboardEvent::initKeyboardEvent(ScriptState* scriptState, const AtomicStri ng& type, bool canBubble, bool cancelable, AbstractView* view, 139 void KeyboardEvent::initKeyboardEvent(ScriptState* scriptState, const AtomicStri ng& type, bool canBubble, bool cancelable, AbstractView* view,
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 { 235 {
234 } 236 }
235 237
236 bool KeyboardEventDispatchMediator::dispatchEvent(EventDispatcher& dispatcher) c onst 238 bool KeyboardEventDispatchMediator::dispatchEvent(EventDispatcher& dispatcher) c onst
237 { 239 {
238 // Make sure not to return true if we already took default action while hand ling the event. 240 // Make sure not to return true if we already took default action while hand ling the event.
239 return EventDispatchMediator::dispatchEvent(dispatcher) && !event().defaultH andled(); 241 return EventDispatchMediator::dispatchEvent(dispatcher) && !event().defaultH andled();
240 } 242 }
241 243
242 } // namespace blink 244 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698