chrome/src/extension/utils.js in selenium-webdriver-0.0.16 vs chrome/src/extension/utils.js in selenium-webdriver-0.0.17
- old
+ new
@@ -224,5 +224,8 @@
+ " arguments[0].dispatchEvent(event);";
execute_(script, args, function(){});
};
+Utils.trim = function(str) {
+ return str.replace(/^\s*/, "").replace(/\s*$/, "");
+}
\ No newline at end of file