gecko/xpcom/tests/xptinfo/xptunit/test_jar_xptloading.js
Benjamin Smedberg 3fcaf094f4 Bug 570488 - Fix loading of XPTs nested in JARs [2/2] r=mwu
--HG--
extra : rebase_source : b97a591c0260daed1f2ef2eba69e60ff82acd18f
2010-06-14 16:10:04 -07:00

8 lines
318 B
JavaScript

const xptiITestInterface_IID = "{13c9fc33-40e6-44dc-81e2-21e0dd41f232}";
var id = Components.interfaces.xptiITestInterface;
do_check_true(id, "xptiITestInterface not registered");
var id2 = Components.interfacesById[xptiITestInterface_IID];
do_check_true(id === id2, "xptiITestInterface info doesn't match");