[Verification]
Related TCT should pass
Change-Id: I7e9fcdc8d2cc72031f608ad1a0f19ffdc8be2ef4
Signed-off-by: Pawel Kaczmarek <p.kaczmarek3@samsung.com>
return false;
}
for (var i = 0; i < v.length; ++i) {
- if (!type_.isString(v[i]) && !(/\s/.test(v))) {
+ if (!type_.isString(v[i])) {
return false;
}
}
return _subIconPath;
},
set: function(v) {
- _subIconPath = type_.isString(v) && !(/\s/.test(v)) ? v : _subIconPath;
+ _subIconPath = type_.isString(v) ? v : _subIconPath;
},
enumerable: true
},
return _backgroundImagePath;
},
set: function(v) {
- _backgroundImagePath = type_.isString(v) && !(/\s/.test(v)) ? v : _backgroundImagePath;
+ _backgroundImagePath = type_.isString(v) ? v : _backgroundImagePath;
},
enumerable: true
},