summaryrefslogtreecommitdiff
path: root/www/firefox/files/patch-bug1401573
diff options
context:
space:
mode:
authorJan Beich <jbeich@FreeBSD.org>2017-11-14 19:04:44 +0000
committerJan Beich <jbeich@FreeBSD.org>2017-11-14 19:04:44 +0000
commiteb864e519d068c6f12ec6f12461bcb05887b6ce6 (patch)
treed0bbc8aaad1216e11badc746f6c83eaf42ec88cf /www/firefox/files/patch-bug1401573
parentsecurity/vuxml: mark firefox < 57 as vulnerable (diff)
www/firefox: update to 57.0 (marketed as "Firefox Quantum")
Not a MFH candidate due to POLA violation per redesigned UI, broken legacy addons and auto-reviewed new addons. Changes: https://www.mozilla.org/firefox/57.0/releasenotes/ PR: 222693 Tested by: pi, tobik, TrueOS
Notes
Notes: svn path=/head/; revision=454194
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) {