mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
e65756d2ac
So that we can share the same FormAssistant instance with other components defined in content.js. Updated chrome tests accordingly.
10 lines
274 B
JavaScript
10 lines
274 B
JavaScript
dump("====================== Content Script Loaded =======================\n");
|
|
|
|
let assistant = Content.formAssistant;
|
|
|
|
AsyncTests.add("FormAssist:Show", function(aMessage, aJson) {
|
|
let element = content.document.getElementById(aJson.id);
|
|
assistant.open(element);
|
|
});
|
|
|