am 36425d19: Merge "Catch badly formed URLs in WebView accessibility injector." into jb-mr1-dev

* commit '36425d19fc578c2042098d2045092990a811d0e6':
  Catch badly formed URLs in WebView accessibility injector.
This commit is contained in:
erin rosenthal
2012-10-22 17:56:27 -07:00
committed by Android Git Automerger

View File

@@ -514,6 +514,8 @@ class AccessibilityInjector {
}
} catch (URISyntaxException e) {
// Do nothing.
} catch (IllegalArgumentException e) {
// Catch badly-formed URLs.
}
return ACCESSIBILITY_SCRIPT_INJECTION_UNDEFINED;