I have the following two cssText strings:
var s1 = "text-align: right; font-weight: bold;";
var s2 = "text-align: left; color: #000";
I need to get string that consists of merged properties from them:
var result = merge(s1, s2);
result:
"text-align: left; font-weight: bold; color: #000;"