Sat, 03 Jan 2015 20:18:00 +0100
Conditionally enable double key logic according to:
private browsing mode or privacy.thirdparty.isolate preference and
implement in GetCookieStringCommon and FindCookie where it counts...
With some reservations of how to convince FindCookie users to test
condition and pass a nullptr when disabling double key logic.
michael@0 | 1 | /* Any copyright is dedicated to the Public Domain. |
michael@0 | 2 | http://creativecommons.org/publicdomain/zero/1.0/ */ |
michael@0 | 3 | |
michael@0 | 4 | /** |
michael@0 | 5 | * Regression test for bug 882986 regarding sourcesContent and absolute source |
michael@0 | 6 | * URLs. |
michael@0 | 7 | */ |
michael@0 | 8 | |
michael@0 | 9 | var gDebuggee; |
michael@0 | 10 | var gClient; |
michael@0 | 11 | var gThreadClient; |
michael@0 | 12 | |
michael@0 | 13 | Components.utils.import("resource:///modules/devtools/SourceMap.jsm"); |
michael@0 | 14 | |
michael@0 | 15 | function run_test() |
michael@0 | 16 | { |
michael@0 | 17 | initTestDebuggerServer(); |
michael@0 | 18 | gDebuggee = addTestGlobal("test-source-map"); |
michael@0 | 19 | gClient = new DebuggerClient(DebuggerServer.connectPipe()); |
michael@0 | 20 | gClient.connect(function() { |
michael@0 | 21 | attachTestTabAndResume(gClient, "test-source-map", function(aResponse, aTabClient, aThreadClient) { |
michael@0 | 22 | gThreadClient = aThreadClient; |
michael@0 | 23 | test_source_maps(); |
michael@0 | 24 | }); |
michael@0 | 25 | }); |
michael@0 | 26 | do_test_pending(); |
michael@0 | 27 | } |
michael@0 | 28 | |
michael@0 | 29 | function test_source_maps() |
michael@0 | 30 | { |
michael@0 | 31 | gClient.addOneTimeListener("newSource", function (aEvent, aPacket) { |
michael@0 | 32 | let sourceClient = gThreadClient.source(aPacket.source); |
michael@0 | 33 | sourceClient.source(function ({error, source}) { |
michael@0 | 34 | do_check_true(!error, "should be able to grab the source"); |
michael@0 | 35 | do_check_eq(source, "foo", |
michael@0 | 36 | "Should load the source from the sourcesContent field"); |
michael@0 | 37 | finishClient(gClient); |
michael@0 | 38 | }); |
michael@0 | 39 | }); |
michael@0 | 40 | |
michael@0 | 41 | let code = "'nothing here';\n"; |
michael@0 | 42 | code += "//# sourceMappingURL=data:text/json," + JSON.stringify({ |
michael@0 | 43 | version: 3, |
michael@0 | 44 | file: "foo.js", |
michael@0 | 45 | sources: ["/a"], |
michael@0 | 46 | names: [], |
michael@0 | 47 | mappings: "AACA", |
michael@0 | 48 | sourcesContent: ["foo"] |
michael@0 | 49 | }); |
michael@0 | 50 | Components.utils.evalInSandbox(code, gDebuggee, "1.8", |
michael@0 | 51 | "http://example.com/foo.js", 1); |
michael@0 | 52 | } |