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 | var gDebuggee; |
michael@0 | 5 | var gClient; |
michael@0 | 6 | var gThreadClient; |
michael@0 | 7 | |
michael@0 | 8 | function run_test() |
michael@0 | 9 | { |
michael@0 | 10 | initTestDebuggerServer(); |
michael@0 | 11 | gDebuggee = addTestGlobal("test-grips"); |
michael@0 | 12 | gDebuggee.eval(function stopMe(arg1) { |
michael@0 | 13 | debugger; |
michael@0 | 14 | }.toString()); |
michael@0 | 15 | |
michael@0 | 16 | gClient = new DebuggerClient(DebuggerServer.connectPipe()); |
michael@0 | 17 | gClient.connect(function() { |
michael@0 | 18 | attachTestTabAndResume(gClient, "test-grips", function(aResponse, aTabClient, aThreadClient) { |
michael@0 | 19 | gThreadClient = aThreadClient; |
michael@0 | 20 | test_named_function(); |
michael@0 | 21 | }); |
michael@0 | 22 | }); |
michael@0 | 23 | do_test_pending(); |
michael@0 | 24 | } |
michael@0 | 25 | |
michael@0 | 26 | function test_named_function() |
michael@0 | 27 | { |
michael@0 | 28 | gThreadClient.addOneTimeListener("paused", function(aEvent, aPacket) { |
michael@0 | 29 | let args = aPacket.frame.arguments; |
michael@0 | 30 | |
michael@0 | 31 | do_check_eq(args[0].class, "Function"); |
michael@0 | 32 | do_check_eq(args[0].name, "stopMe"); |
michael@0 | 33 | do_check_eq(args[0].displayName, "stopMe"); |
michael@0 | 34 | |
michael@0 | 35 | let objClient = gThreadClient.pauseGrip(args[0]); |
michael@0 | 36 | objClient.getParameterNames(function(aResponse) { |
michael@0 | 37 | do_check_eq(aResponse.parameterNames.length, 1); |
michael@0 | 38 | do_check_eq(aResponse.parameterNames[0], "arg1"); |
michael@0 | 39 | |
michael@0 | 40 | gThreadClient.resume(test_inferred_name_function); |
michael@0 | 41 | }); |
michael@0 | 42 | |
michael@0 | 43 | }); |
michael@0 | 44 | |
michael@0 | 45 | gDebuggee.eval("stopMe(stopMe)"); |
michael@0 | 46 | } |
michael@0 | 47 | |
michael@0 | 48 | function test_inferred_name_function() { |
michael@0 | 49 | gThreadClient.addOneTimeListener("paused", function(aEvent, aPacket) { |
michael@0 | 50 | let args = aPacket.frame.arguments; |
michael@0 | 51 | |
michael@0 | 52 | do_check_eq(args[0].class, "Function"); |
michael@0 | 53 | // No name for an anonymous function, but it should have an inferred name. |
michael@0 | 54 | do_check_eq(args[0].name, undefined); |
michael@0 | 55 | do_check_eq(args[0].displayName, "o.m"); |
michael@0 | 56 | |
michael@0 | 57 | let objClient = gThreadClient.pauseGrip(args[0]); |
michael@0 | 58 | objClient.getParameterNames(function(aResponse) { |
michael@0 | 59 | do_check_eq(aResponse.parameterNames.length, 3); |
michael@0 | 60 | do_check_eq(aResponse.parameterNames[0], "foo"); |
michael@0 | 61 | do_check_eq(aResponse.parameterNames[1], "bar"); |
michael@0 | 62 | do_check_eq(aResponse.parameterNames[2], "baz"); |
michael@0 | 63 | |
michael@0 | 64 | gThreadClient.resume(test_anonymous_function); |
michael@0 | 65 | }); |
michael@0 | 66 | }); |
michael@0 | 67 | |
michael@0 | 68 | gDebuggee.eval("var o = { m: function(foo, bar, baz) { } }; stopMe(o.m)"); |
michael@0 | 69 | } |
michael@0 | 70 | |
michael@0 | 71 | function test_anonymous_function() { |
michael@0 | 72 | gThreadClient.addOneTimeListener("paused", function(aEvent, aPacket) { |
michael@0 | 73 | let args = aPacket.frame.arguments; |
michael@0 | 74 | |
michael@0 | 75 | do_check_eq(args[0].class, "Function"); |
michael@0 | 76 | // No name for an anonymous function, and no inferred name, either. |
michael@0 | 77 | do_check_eq(args[0].name, undefined); |
michael@0 | 78 | do_check_eq(args[0].displayName, undefined); |
michael@0 | 79 | |
michael@0 | 80 | let objClient = gThreadClient.pauseGrip(args[0]); |
michael@0 | 81 | objClient.getParameterNames(function(aResponse) { |
michael@0 | 82 | do_check_eq(aResponse.parameterNames.length, 3); |
michael@0 | 83 | do_check_eq(aResponse.parameterNames[0], "foo"); |
michael@0 | 84 | do_check_eq(aResponse.parameterNames[1], "bar"); |
michael@0 | 85 | do_check_eq(aResponse.parameterNames[2], "baz"); |
michael@0 | 86 | |
michael@0 | 87 | gThreadClient.resume(function() { |
michael@0 | 88 | finishClient(gClient); |
michael@0 | 89 | }); |
michael@0 | 90 | }); |
michael@0 | 91 | }); |
michael@0 | 92 | |
michael@0 | 93 | gDebuggee.eval("stopMe(function(foo, bar, baz) { })"); |
michael@0 | 94 | } |
michael@0 | 95 |