summaryrefslogtreecommitdiff
path: root/www/firefox/files/patch-bug1401573
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--www/firefox/files/patch-bug140157327
1 files changed, 0 insertions, 27 deletions
diff --git a/www/firefox/files/patch-bug1401573 b/www/firefox/files/patch-bug1401573
deleted file mode 100644
index 22fc6f569a59..000000000000
--- a/www/firefox/files/patch-bug1401573
+++ /dev/null
@@ -1,27 +0,0 @@
-commit d0ed05261f20
-Author: jason laster <jlaster@mozilla.com>
-Date: Wed Sep 20 10:52:54 2017 -0400
-
- Bug 1401573 - Fix PoE, Link, and linux issue. r=nchevobbe
-
- MozReview-Commit-ID: 35TA6bhW1Wr
----
- devtools/client/debugger/new/debugger.js | 68 +++++++++++++++++-----
- devtools/client/debugger/new/panel.js | 27 ++++++++-
- .../new/test/mochitest/browser_dbg-expressions.js | 2 +-
- 3 files changed, 79 insertions(+), 18 deletions(-)
-
-diff --git devtools/client/debugger/new/debugger.js devtools/client/debugger/new/debugger.js
-index f52a3e380ab6..c1213180cb13 100644
---- devtools/client/debugger/new/debugger.js
-+++ devtools/client/debugger/new/debugger.js
-@@ -29493,7 +29493,8 @@ return /******/ (function(modules) { // webpackBootstr
- }
-
- function getKeyForOS(os, action) {
-- return KEYS[os][action];
-+ var osActions = KEYS[os] || KEYS.Linux;
-+ return osActions[action];
- }
-
- function formatKey(action) {