mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-01 00:32:11 +00:00
Bug 1336715 - Use https://hg.mozilla.org instead of http in devtools comments. r=pbro
MozReview-Commit-ID: iSeSOEv0B --HG-- extra : rebase_source : 26e63413aa3e585a1248a8654d4719ce64808c76
This commit is contained in:
parent
f33b7daead
commit
eacdb7c6e3
@ -8899,7 +8899,7 @@ var Debugger =
|
|||||||
* => state === "insecure"
|
* => state === "insecure"
|
||||||
*
|
*
|
||||||
* - request is HTTPS but it uses a weak cipher or old protocol, see
|
* - request is HTTPS but it uses a weak cipher or old protocol, see
|
||||||
* http://hg.mozilla.org/mozilla-central/annotate/def6ed9d1c1a/
|
* https://hg.mozilla.org/mozilla-central/annotate/def6ed9d1c1a/
|
||||||
* security/manager/ssl/nsNSSCallbacks.cpp#l1233
|
* security/manager/ssl/nsNSSCallbacks.cpp#l1233
|
||||||
* - request is mixed content (which makes no sense whatsoever)
|
* - request is mixed content (which makes no sense whatsoever)
|
||||||
* => .securityState has STATE_IS_BROKEN flag
|
* => .securityState has STATE_IS_BROKEN flag
|
||||||
@ -9072,7 +9072,7 @@ var Debugger =
|
|||||||
const wpl = Ci.nsIWebProgressListener;
|
const wpl = Ci.nsIWebProgressListener;
|
||||||
|
|
||||||
// If there's non-fatal security issues the request has STATE_IS_BROKEN
|
// If there's non-fatal security issues the request has STATE_IS_BROKEN
|
||||||
// flag set. See http://hg.mozilla.org/mozilla-central/file/44344099d119
|
// flag set. See https://hg.mozilla.org/mozilla-central/file/44344099d119
|
||||||
// /security/manager/ssl/nsNSSCallbacks.cpp#l1233
|
// /security/manager/ssl/nsNSSCallbacks.cpp#l1233
|
||||||
let reasons = [];
|
let reasons = [];
|
||||||
|
|
||||||
@ -37590,7 +37590,7 @@ var Debugger =
|
|||||||
* => state === "insecure"
|
* => state === "insecure"
|
||||||
*
|
*
|
||||||
* - request is HTTPS but it uses a weak cipher or old protocol, see
|
* - request is HTTPS but it uses a weak cipher or old protocol, see
|
||||||
* http://hg.mozilla.org/mozilla-central/annotate/def6ed9d1c1a/
|
* https://hg.mozilla.org/mozilla-central/annotate/def6ed9d1c1a/
|
||||||
* security/manager/ssl/nsNSSCallbacks.cpp#l1233
|
* security/manager/ssl/nsNSSCallbacks.cpp#l1233
|
||||||
* - request is mixed content (which makes no sense whatsoever)
|
* - request is mixed content (which makes no sense whatsoever)
|
||||||
* => .securityState has STATE_IS_BROKEN flag
|
* => .securityState has STATE_IS_BROKEN flag
|
||||||
@ -37763,7 +37763,7 @@ var Debugger =
|
|||||||
const wpl = Ci.nsIWebProgressListener;
|
const wpl = Ci.nsIWebProgressListener;
|
||||||
|
|
||||||
// If there's non-fatal security issues the request has STATE_IS_BROKEN
|
// If there's non-fatal security issues the request has STATE_IS_BROKEN
|
||||||
// flag set. See http://hg.mozilla.org/mozilla-central/file/44344099d119
|
// flag set. See https://hg.mozilla.org/mozilla-central/file/44344099d119
|
||||||
// /security/manager/ssl/nsNSSCallbacks.cpp#l1233
|
// /security/manager/ssl/nsNSSCallbacks.cpp#l1233
|
||||||
let reasons = [];
|
let reasons = [];
|
||||||
|
|
||||||
|
@ -653,7 +653,7 @@ a.learn-more-link.webconsole-learn-more-link {
|
|||||||
|
|
||||||
/*
|
/*
|
||||||
* This hardcoded width likely due to a toolkit Windows specific bug.
|
* This hardcoded width likely due to a toolkit Windows specific bug.
|
||||||
* See http://hg.mozilla.org/mozilla-central/annotate/f38d6df93cad/toolkit/themes/winstripe/global/textbox-aero.css#l7
|
* See https://hg.mozilla.org/mozilla-central/annotate/f38d6df93cad/toolkit/themes/winstripe/global/textbox-aero.css#l7
|
||||||
*/
|
*/
|
||||||
|
|
||||||
:root[platform="win"] .hud-filter-box {
|
:root[platform="win"] .hud-filter-box {
|
||||||
|
@ -17,7 +17,7 @@ this information is documented on the
|
|||||||
A very quick version:
|
A very quick version:
|
||||||
|
|
||||||
```
|
```
|
||||||
$ hg clone http://hg.mozilla.org/integration/fx-team
|
$ hg clone https://hg.mozilla.org/integration/mozilla-inbound
|
||||||
$ ./mach build
|
$ ./mach build
|
||||||
$ ./mach run -P development
|
$ ./mach run -P development
|
||||||
```
|
```
|
||||||
|
@ -676,10 +676,10 @@ TabActor.prototype = {
|
|||||||
// (chrome-)webnavigation-create is fired very early during docshell
|
// (chrome-)webnavigation-create is fired very early during docshell
|
||||||
// construction. In new root docshells within child processes, involving
|
// construction. In new root docshells within child processes, involving
|
||||||
// TabChild, this event is from within this call:
|
// TabChild, this event is from within this call:
|
||||||
// http://hg.mozilla.org/mozilla-central/annotate/74d7fb43bb44/dom/ipc/TabChild.cpp#l912
|
// https://hg.mozilla.org/mozilla-central/annotate/74d7fb43bb44/dom/ipc/TabChild.cpp#l912
|
||||||
// whereas the chromeEventHandler (and most likely other stuff) is set
|
// whereas the chromeEventHandler (and most likely other stuff) is set
|
||||||
// later:
|
// later:
|
||||||
// http://hg.mozilla.org/mozilla-central/annotate/74d7fb43bb44/dom/ipc/TabChild.cpp#l944
|
// https://hg.mozilla.org/mozilla-central/annotate/74d7fb43bb44/dom/ipc/TabChild.cpp#l944
|
||||||
// So wait a tick before watching it:
|
// So wait a tick before watching it:
|
||||||
DevToolsUtils.executeSoon(() => {
|
DevToolsUtils.executeSoon(() => {
|
||||||
// Bug 1142752: sometimes, the docshell appears to be immediately
|
// Bug 1142752: sometimes, the docshell appears to be immediately
|
||||||
|
@ -570,7 +570,7 @@ var NetworkHelper = {
|
|||||||
* => state === "insecure"
|
* => state === "insecure"
|
||||||
*
|
*
|
||||||
* - request is HTTPS but it uses a weak cipher or old protocol, see
|
* - request is HTTPS but it uses a weak cipher or old protocol, see
|
||||||
* http://hg.mozilla.org/mozilla-central/annotate/def6ed9d1c1a/
|
* https://hg.mozilla.org/mozilla-central/annotate/def6ed9d1c1a/
|
||||||
* security/manager/ssl/nsNSSCallbacks.cpp#l1233
|
* security/manager/ssl/nsNSSCallbacks.cpp#l1233
|
||||||
* - request is mixed content (which makes no sense whatsoever)
|
* - request is mixed content (which makes no sense whatsoever)
|
||||||
* => .securityState has STATE_IS_BROKEN flag
|
* => .securityState has STATE_IS_BROKEN flag
|
||||||
@ -745,7 +745,7 @@ var NetworkHelper = {
|
|||||||
const wpl = Ci.nsIWebProgressListener;
|
const wpl = Ci.nsIWebProgressListener;
|
||||||
|
|
||||||
// If there's non-fatal security issues the request has STATE_IS_BROKEN
|
// If there's non-fatal security issues the request has STATE_IS_BROKEN
|
||||||
// flag set. See http://hg.mozilla.org/mozilla-central/file/44344099d119
|
// flag set. See https://hg.mozilla.org/mozilla-central/file/44344099d119
|
||||||
// /security/manager/ssl/nsNSSCallbacks.cpp#l1233
|
// /security/manager/ssl/nsNSSCallbacks.cpp#l1233
|
||||||
let reasons = [];
|
let reasons = [];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user