Thanks. I think the code backported looks good. However, I think we should have a better patch format. First, we should keep the Mozilla bug number. That makes it easier to find the patch(es) in our tree. Second, we should keep the patch(set) structure: one commit in our tree should match one commit taken from Mozilla. This allows us to pinpoint possible issues easier. Third, we should fix up the commit message if needed (in your case you still have included "This tests not only windows, but also workers." even though you rightly omitted the workers related part).
A workflow that works fine for me is having mozilla-central as a git remote and cherry picking the patches from that one into tor-browser one-by-one, fixing them up if needed and adapting the commit message afterwards with git commit --amend if needed as well.
Trac: Status: needs_review to needs_revision Keywords: TorBrowserTeam201712R deleted, TorBrowserTeam201712 added
Thanks. I think the code backported looks good. However, I think we should have a better patch format. First, we should keep the Mozilla bug number. That makes it easier to find the patch(es) in our tree. Second, we should keep the patch(set) structure: one commit in our tree should match one commit taken from Mozilla. This allows us to pinpoint possible issues easier. Third, we should fix up the commit message if needed (in your case you still have included "This tests not only windows, but also workers." even though you rightly omitted the workers related part).
A workflow that works fine for me is having mozilla-central as a git remote and cherry picking the patches from that one into tor-browser one-by-one, fixing them up if needed and adapting the commit message afterwards with git commit --amend if needed as well.
We are close! Could you just remove two superfluous newlines? One at:
{{{
#include "nsINetworkProperties.h"
+#include "nsContentUtils.h"
+
}}}
and the other one, which is git complaining about, at the end of the test file:
{{{
Thanks for all three fixups. The patches got applied to tor-browser-52.5.2esr-7.5-2 as commit a1beadc5b70e1b6e4727506656723684cf3225bf and a72faadea544a71ae5ca95ec816f2684c205b56a).