summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/com/android/browser/UrlUtils.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/browser/UrlUtils.java b/src/com/android/browser/UrlUtils.java
index 18f3c62..16b670b 100644
--- a/src/com/android/browser/UrlUtils.java
+++ b/src/com/android/browser/UrlUtils.java
@@ -32,7 +32,7 @@ public class UrlUtils {
"(?i)" + // switch on case insensitive matching
"(" + // begin group for schema
"(?:http|https|file):\\/\\/" +
- "|(?:data|about|javascript):" +
+ "|(?:inline|data|about|javascript):" +
"|(?:.*:.*@)" +
")" +
"(.*)" );