mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 13:48:23 +02:00
11 lines
281 B
JavaScript
11 lines
281 B
JavaScript
"use strict";
|
|
|
|
add_task(_ => {
|
|
try {
|
|
Cc["@mozilla.org/network/effective-tld-service;1"]
|
|
.createInstance(Ci.nsISupports);
|
|
} catch (e) {
|
|
is(e.result, Cr.NS_ERROR_XPC_CI_RETURNED_FAILURE,
|
|
"Component creation as an instance fails with expected code");
|
|
}
|
|
});
|