mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
11 lines
378 B
JavaScript
11 lines
378 B
JavaScript
function run_test()
|
|
{
|
|
const xptiITestInterface_IID = "{13c9fc33-40e6-44dc-81e2-21e0dd41f232}";
|
|
|
|
var id = Components.interfaces.xptiITestInterface;
|
|
do_check_true(id != undefined, "xptiITestInterface not registered");
|
|
|
|
var id2 = Components.interfacesByID[xptiITestInterface_IID];
|
|
do_check_true(id.toString() == id2, "xptiITestInterface info doesn't match");
|
|
}
|