Index: chrome/browser/resources/chromeos/chromevox/speech_rules/mathml_store_util.js |
diff --git a/chrome/browser/resources/chromeos/chromevox/speech_rules/mathml_store_util.js b/chrome/browser/resources/chromeos/chromevox/speech_rules/mathml_store_util.js |
index 7c1d4010d869d0c75c9c2483576ae433ae167c0b..3a36b925541cee7bf3cdc39a0529a3f5dd8619e1 100644 |
--- a/chrome/browser/resources/chromeos/chromevox/speech_rules/mathml_store_util.js |
+++ b/chrome/browser/resources/chromeos/chromevox/speech_rules/mathml_store_util.js |
@@ -124,9 +124,9 @@ cvox.MathmlStoreUtil.nextSeparatorFunction = function(separators) { |
if (separators.match(/^\s+$/)) { |
return null; |
} else { |
- var sepList = separators.replace(/\s/g, '') |
- .split('') |
- .filter(function(x) {return x;}); |
+ var sepList = separators.replace(/\s/g, '').split('').filter(function(x) { |
+ return x; |
+ }); |
} |
} else { |
// When no separator is given MathML uses comma as default. |