mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-09 01:08:39 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
|
|
@ -0,0 +1,14 @@
|
|||
function run_test() {
|
||||
let result = Cc["@mozilla.org/autocomplete/simple-result;1"]
|
||||
.createInstance(Ci.nsIAutoCompleteSimpleResult);
|
||||
result.appendMatch("a", "");
|
||||
result.appendMatch("c", "");
|
||||
result.insertMatchAt(1, "b", "");
|
||||
result.insertMatchAt(3, "d", "");
|
||||
|
||||
Assert.equal(result.matchCount, 4);
|
||||
Assert.equal(result.getValueAt(0), "a");
|
||||
Assert.equal(result.getValueAt(1), "b");
|
||||
Assert.equal(result.getValueAt(2), "c");
|
||||
Assert.equal(result.getValueAt(3), "d");
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue