[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.22-985-g3c00f00
eric at webkit.org
eric at webkit.org
Wed Mar 17 18:14:40 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 034644da1f061240c6163b04eb907806cce6fe67
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Thu Mar 4 04:45:32 2010 +0000
2010-03-03 Diego Gonzalez <diego.gonzalez at openbossa.org>
Reviewed by Kenneth Rohde Christiansen.
Make keyIdentifierForQtKeyCode return the unicode backspace value on Qt PlatformKeyboardEvent
LayoutTests:
fast/events/key-events-in-input-text.html
fast/events/special-key-events-in-input-text.html
[Qt] Return the unicode backspace value in keyIdentifierForQtKeyCode on Qt PlatformKeyboardEvent
https://bugs.webkit.org/show_bug.cgi?id=35694
* platform/qt/Skipped:
2010-03-03 Diego Gonzalez <diego.gonzalez at openbossa.org>
Reviewed by Kenneth Rohde Christiansen.
Make keyIdentifierForQtKeyCode return the unicode backspace value on Qt PlatformKeyboardEvent
LayoutTests:
fast/events/key-events-in-input-text.html
fast/events/special-key-events-in-input-text.html
[Qt] Return the unicode backspace value in keyIdentifierForQtKeyCode on Qt PlatformKeyboardEvent
https://bugs.webkit.org/show_bug.cgi?id=35694
* platform/qt/PlatformKeyboardEventQt.cpp:
(WebCore::keyIdentifierForQtKeyCode):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@55501 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/LayoutTests/ChangeLog b/LayoutTests/ChangeLog
index 2da5ab7..83a8ba4 100644
--- a/LayoutTests/ChangeLog
+++ b/LayoutTests/ChangeLog
@@ -1,3 +1,18 @@
+2010-03-03 Diego Gonzalez <diego.gonzalez at openbossa.org>
+
+ Reviewed by Kenneth Rohde Christiansen.
+
+ Make keyIdentifierForQtKeyCode return the unicode backspace value on Qt PlatformKeyboardEvent
+
+ LayoutTests:
+ fast/events/key-events-in-input-text.html
+ fast/events/special-key-events-in-input-text.html
+
+ [Qt] Return the unicode backspace value in keyIdentifierForQtKeyCode on Qt PlatformKeyboardEvent
+ https://bugs.webkit.org/show_bug.cgi?id=35694
+
+ * platform/qt/Skipped:
+
2010-03-03 Chad Faragher <wyck at chromium.org>
Reviewed by Darin Adler.
diff --git a/LayoutTests/platform/qt/Skipped b/LayoutTests/platform/qt/Skipped
index 41f9590..521471f 100644
--- a/LayoutTests/platform/qt/Skipped
+++ b/LayoutTests/platform/qt/Skipped
@@ -1155,7 +1155,6 @@ fast/encoding/invalid-xml.html
fast/events/access-key-self-destruct.html
fast/events/attempt-scroll-with-no-scrollbars.html
fast/events/key-events-in-input-button.html
-fast/events/key-events-in-input-text.html
fast/forms/input-align-image.html
fast/forms/input-align.html
fast/forms/input-double-click-selection-gap-bug.html
@@ -4784,7 +4783,6 @@ fast/encoding/hebrew/8859-8-i.html
fast/encoding/hebrew/logical.html
fast/events/crash-on-mutate-during-drop.html
fast/events/pointer-events-2.html
-fast/events/special-key-events-in-input-text.html
fast/forms/option-mouseevents.html
fast/forms/search-abs-pos-cancel-button.html
fast/forms/text-control-intrinsic-widths.html
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 0205d29..40f51e9 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,19 @@
+2010-03-03 Diego Gonzalez <diego.gonzalez at openbossa.org>
+
+ Reviewed by Kenneth Rohde Christiansen.
+
+ Make keyIdentifierForQtKeyCode return the unicode backspace value on Qt PlatformKeyboardEvent
+
+ LayoutTests:
+ fast/events/key-events-in-input-text.html
+ fast/events/special-key-events-in-input-text.html
+
+ [Qt] Return the unicode backspace value in keyIdentifierForQtKeyCode on Qt PlatformKeyboardEvent
+ https://bugs.webkit.org/show_bug.cgi?id=35694
+
+ * platform/qt/PlatformKeyboardEventQt.cpp:
+ (WebCore::keyIdentifierForQtKeyCode):
+
2010-03-03 Chad Faragher <wyck at chromium.org>
Reviewed by Darin Adler.
diff --git a/WebCore/platform/qt/PlatformKeyboardEventQt.cpp b/WebCore/platform/qt/PlatformKeyboardEventQt.cpp
index 12200f4..c56c3bb 100644
--- a/WebCore/platform/qt/PlatformKeyboardEventQt.cpp
+++ b/WebCore/platform/qt/PlatformKeyboardEventQt.cpp
@@ -127,6 +127,8 @@ static String keyIdentifierForQtKeyCode(int keyCode)
// Standard says that DEL becomes U+007F.
case Qt::Key_Delete:
return "U+007F";
+ case Qt::Key_Backspace:
+ return "U+0008";
case Qt::Key_Tab:
return "U+0009";
case Qt::Key_Backtab:
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list