MultiSelect<String> multiSelect = MultiSelect.<String>create()
.appendChild(SelectOption.create("Item1"))
.appendChild(SelectOption.create("Item2"))
.appendChild(SelectOption.create("Item3"));
multiSelect.selectByValue("Item2"); // used to work, now throws Error
multiSelect.selectByKey("Item2"); // works
when calling selectByValue a ReferenceError is thrown. It used to work fine with 2.0.4. This happens with HEAD-SNAPSHOT version