Two tests (JDK-8050964.js, JDK-8055034.js) contain code like this: "s.replaceAll(/\//g, File.separater)". Instead of replaceAll, replace must be called (replaceAll is a Java method that does not accept a JS regex). File.separater is a typo; it must be File.separator.
|