Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 2 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 3 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 4 | |
michael@0 | 5 | // This test makes sure that the style editor does not store any |
michael@0 | 6 | // content CSS files in the permanent cache when opened from PB mode. |
michael@0 | 7 | |
michael@0 | 8 | let gUI; |
michael@0 | 9 | |
michael@0 | 10 | function test() { |
michael@0 | 11 | waitForExplicitFinish(); |
michael@0 | 12 | let windowsToClose = []; |
michael@0 | 13 | let testURI = 'http://' + TEST_HOST + '/browser/browser/devtools/styleeditor/test/test_private.html'; |
michael@0 | 14 | |
michael@0 | 15 | function checkCache() { |
michael@0 | 16 | checkDiskCacheFor(TEST_HOST, function() { |
michael@0 | 17 | gUI = null; |
michael@0 | 18 | finish(); |
michael@0 | 19 | }); |
michael@0 | 20 | } |
michael@0 | 21 | |
michael@0 | 22 | function doTest(aWindow) { |
michael@0 | 23 | aWindow.gBrowser.selectedBrowser.addEventListener("load", function onLoad() { |
michael@0 | 24 | aWindow.gBrowser.selectedBrowser.removeEventListener("load", onLoad, true); |
michael@0 | 25 | cache.clear(); |
michael@0 | 26 | openStyleEditorInWindow(aWindow, function(panel) { |
michael@0 | 27 | gUI = panel.UI; |
michael@0 | 28 | gUI.on("editor-added", onEditorAdded); |
michael@0 | 29 | }); |
michael@0 | 30 | }, true); |
michael@0 | 31 | |
michael@0 | 32 | aWindow.gBrowser.selectedBrowser.loadURI(testURI); |
michael@0 | 33 | } |
michael@0 | 34 | |
michael@0 | 35 | function onEditorAdded(aEvent, aEditor) { |
michael@0 | 36 | aEditor.getSourceEditor().then(checkCache); |
michael@0 | 37 | } |
michael@0 | 38 | |
michael@0 | 39 | function testOnWindow(options, callback) { |
michael@0 | 40 | let win = OpenBrowserWindow(options); |
michael@0 | 41 | win.addEventListener("load", function onLoad() { |
michael@0 | 42 | win.removeEventListener("load", onLoad, false); |
michael@0 | 43 | windowsToClose.push(win); |
michael@0 | 44 | executeSoon(function() callback(win)); |
michael@0 | 45 | }, false); |
michael@0 | 46 | }; |
michael@0 | 47 | |
michael@0 | 48 | registerCleanupFunction(function() { |
michael@0 | 49 | windowsToClose.forEach(function(win) { |
michael@0 | 50 | win.close(); |
michael@0 | 51 | }); |
michael@0 | 52 | }); |
michael@0 | 53 | |
michael@0 | 54 | testOnWindow({private: true}, function(win) { |
michael@0 | 55 | doTest(win); |
michael@0 | 56 | }); |
michael@0 | 57 | } |