mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 886046 - Add a MockColorPicker module in SpecialPowers. r=ctalbert
This commit is contained in:
parent
986010ebfa
commit
57b295be46
@ -28,4 +28,5 @@ marionette.jar:
|
||||
|
||||
% resource specialpowers %modules/
|
||||
modules/MockFilePicker.jsm (../specialpowers/content/MockFilePicker.jsm)
|
||||
modules/MockColorPicker.jsm (../specialpowers/content/MockColorPicker.jsm)
|
||||
modules/MockPermissionPrompt.jsm (../specialpowers/content/MockPermissionPrompt.jsm)
|
||||
|
125
testing/specialpowers/content/MockColorPicker.jsm
Normal file
125
testing/specialpowers/content/MockColorPicker.jsm
Normal file
@ -0,0 +1,125 @@
|
||||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
this.EXPORTED_SYMBOLS = ["MockColorPicker"];
|
||||
|
||||
const Cc = Components.classes;
|
||||
const Ci = Components.interfaces;
|
||||
const Cm = Components.manager;
|
||||
const Cu = Components.utils;
|
||||
|
||||
const CONTRACT_ID = "@mozilla.org/colorpicker;1";
|
||||
|
||||
Cu.import("resource://gre/modules/Services.jsm");
|
||||
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
||||
|
||||
var registrar = Cm.QueryInterface(Ci.nsIComponentRegistrar);
|
||||
var oldClassID = "", oldFactory = null;
|
||||
var newClassID = Cc["@mozilla.org/uuid-generator;1"].getService(Ci.nsIUUIDGenerator).generateUUID();
|
||||
var newFactory = function (window) {
|
||||
return {
|
||||
createInstance: function(aOuter, aIID) {
|
||||
if (aOuter)
|
||||
throw Components.results.NS_ERROR_NO_AGGREGATION;
|
||||
return new MockColorPickerInstance(window).QueryInterface(aIID);
|
||||
},
|
||||
lockFactory: function(aLock) {
|
||||
throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
|
||||
},
|
||||
QueryInterface: XPCOMUtils.generateQI([Ci.nsIFactory])
|
||||
};
|
||||
}
|
||||
|
||||
this.MockColorPicker = {
|
||||
init: function(window) {
|
||||
this.reset();
|
||||
this.factory = newFactory(window);
|
||||
if (!registrar.isCIDRegistered(newClassID)) {
|
||||
try {
|
||||
oldClassID = registrar.contractIDToCID(CONTRACT_ID);
|
||||
oldFactory = Cm.getClassObject(Cc[CONTRACT_ID], Ci.nsIFactory);
|
||||
} catch(ex) {
|
||||
oldClassID = "";
|
||||
oldFactory = null;
|
||||
dump("TEST-INFO | can't get colorpicker registered component, " +
|
||||
"assuming there is none");
|
||||
}
|
||||
if (oldClassID != "" && oldFactory != null) {
|
||||
registrar.unregisterFactory(oldClassID, oldFactory);
|
||||
}
|
||||
registrar.registerFactory(newClassID, "", CONTRACT_ID, this.factory);
|
||||
}
|
||||
},
|
||||
|
||||
reset: function() {
|
||||
this.returnColor = "";
|
||||
this.showCallback = null;
|
||||
this.shown = false;
|
||||
this.showing = false;
|
||||
},
|
||||
|
||||
cleanup: function() {
|
||||
var previousFactory = this.factory;
|
||||
this.reset();
|
||||
this.factory = null;
|
||||
|
||||
registrar.unregisterFactory(newClassID, previousFactory);
|
||||
if (oldClassID != "" && oldFactory != null) {
|
||||
registrar.registerFactory(oldClassID, "", CONTRACT_ID, oldFactory);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
function MockColorPickerInstance(window) {
|
||||
this.window = window;
|
||||
};
|
||||
MockColorPickerInstance.prototype = {
|
||||
QueryInterface: XPCOMUtils.generateQI([Ci.nsIColorPicker]),
|
||||
init: function(aParent, aTitle, aInitialColor) {
|
||||
this.parent = aParent;
|
||||
this.initialColor = aInitialColor;
|
||||
},
|
||||
initialColor: "",
|
||||
parent: null,
|
||||
open: function(aColorPickerShownCallback) {
|
||||
MockColorPicker.showing = true;
|
||||
MockColorPicker.shown = true;
|
||||
|
||||
this.window.setTimeout(function() {
|
||||
let result = "";
|
||||
try {
|
||||
if (typeof MockColorPicker.showCallback == "function") {
|
||||
var updateCb = function(color) {
|
||||
result = color;
|
||||
aColorPickerShownCallback.update(color);
|
||||
};
|
||||
let returnColor = MockColorPicker.showCallback(this, updateCb);
|
||||
if (typeof returnColor === "string") {
|
||||
result = returnColor;
|
||||
}
|
||||
} else if (typeof MockColorPicker.returnColor === "string") {
|
||||
result = MockColorPicker.returnColor;
|
||||
}
|
||||
} catch(ex) {
|
||||
dump("TEST-UNEXPECTED-FAIL | Exception in MockColorPicker.jsm open() " +
|
||||
"method: " + ex + "\n");
|
||||
}
|
||||
if (aColorPickerShownCallback) {
|
||||
aColorPickerShownCallback.done(result);
|
||||
}
|
||||
}.bind(this), 0);
|
||||
}
|
||||
};
|
||||
|
||||
// Expose everything to content. We call reset() here so that all of the
|
||||
// relevant lazy expandos get added.
|
||||
MockColorPicker.reset();
|
||||
function exposeAll(obj) {
|
||||
var props = {};
|
||||
for (var prop in obj)
|
||||
props[prop] = 'rw';
|
||||
obj.__exposedProps__ = props;
|
||||
}
|
||||
exposeAll(MockColorPicker);
|
||||
exposeAll(MockColorPickerInstance.prototype);
|
@ -10,6 +10,7 @@ var Cc = Components.classes;
|
||||
var Cu = Components.utils;
|
||||
|
||||
Cu.import("resource://specialpowers/MockFilePicker.jsm");
|
||||
Cu.import("resource://specialpowers/MockColorPicker.jsm");
|
||||
Cu.import("resource://specialpowers/MockPermissionPrompt.jsm");
|
||||
Cu.import("resource://gre/modules/Services.jsm");
|
||||
Cu.import("resource://gre/modules/PrivateBrowsingUtils.jsm");
|
||||
@ -485,6 +486,10 @@ SpecialPowersAPI.prototype = {
|
||||
return MockFilePicker
|
||||
},
|
||||
|
||||
get MockColorPicker() {
|
||||
return MockColorPicker
|
||||
},
|
||||
|
||||
get MockPermissionPrompt() {
|
||||
return MockPermissionPrompt
|
||||
},
|
||||
|
@ -7,4 +7,5 @@ specialpowers.jar:
|
||||
|
||||
% resource specialpowers %modules/
|
||||
modules/MockFilePicker.jsm (content/MockFilePicker.jsm)
|
||||
modules/MockColorPicker.jsm (content/MockColorPicker.jsm)
|
||||
modules/MockPermissionPrompt.jsm (content/MockPermissionPrompt.jsm)
|
||||
|
Loading…
Reference in New Issue
Block a user