[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373
eric at webkit.org
eric at webkit.org
Thu Apr 8 01:25:56 UTC 2010
The following commit has been merged in the webkit-1.2 branch:
commit 7b78a75750424cfbebf301534c12e98d5a73d352
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Wed Jan 27 05:04:34 2010 +0000
2010-01-26 Alexander Pavlov <apavlov at chromium.org>
Reviewed by Timothy Hatcher.
Enable the Audits panel via a shortcut (Cmd/Ctrl+Alt+A)
https://bugs.webkit.org/show_bug.cgi?id=34158
* inspector/front-end/inspector.js:
(WebInspector.documentKeyDown):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53894 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 38129e1..28699fd 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,13 @@
+2010-01-26 Alexander Pavlov <apavlov at chromium.org>
+
+ Reviewed by Timothy Hatcher.
+
+ Enable the Audits panel via a shortcut (Cmd/Ctrl+Alt+A)
+ https://bugs.webkit.org/show_bug.cgi?id=34158
+
+ * inspector/front-end/inspector.js:
+ (WebInspector.documentKeyDown):
+
2010-01-26 Kent Tamura <tkent at chromium.org>
Reviewed by Darin Adler.
diff --git a/WebCore/inspector/front-end/inspector.js b/WebCore/inspector/front-end/inspector.js
index 8b8e33e..7d3d1fc 100644
--- a/WebCore/inspector/front-end/inspector.js
+++ b/WebCore/inspector/front-end/inspector.js
@@ -696,6 +696,20 @@ WebInspector.documentKeyDown = function(event)
}
break;
+
+ case "U+0041": // A key
+ if (isMac)
+ var shouldShowAuditsPanel = event.metaKey && !event.shiftKey && !event.ctrlKey && event.altKey;
+ else
+ var shouldShowAuditsPanel = event.ctrlKey && !event.shiftKey && !event.metaKey && event.altKey;
+
+ if (shouldShowAuditsPanel) {
+ if (!this.panels.audits)
+ this.panels.audits = new WebInspector.AuditsPanel();
+ this.currentPanel = this.panels.audits;
+ }
+
+ break;
}
}
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list