From db7ee192f7c92541758d8bc96cac927ee74ab12b Mon Sep 17 00:00:00 2001
From: Joe Bowser <bowserj@apache.org>
Date: Tue, 31 Jul 2012 12:20:31 -0700
Subject: [PATCH] This was a red herring.  There was an XML error on the
 example when compared with master

---
 framework/src/org/apache/cordova/CordovaWebView.java | 2 --
 1 file changed, 2 deletions(-)

diff --git a/framework/src/org/apache/cordova/CordovaWebView.java b/framework/src/org/apache/cordova/CordovaWebView.java
index b45727e7..7fd5775a 100755
--- a/framework/src/org/apache/cordova/CordovaWebView.java
+++ b/framework/src/org/apache/cordova/CordovaWebView.java
@@ -194,10 +194,8 @@ public class CordovaWebView extends WebView {
         
         //Jellybean rightfully tried to lock this down. Too bad they didn't give us a whitelist
         //while we do this
-        /*
         if(android.os.Build.VERSION.SDK_INT > android.os.Build.VERSION_CODES.ICE_CREAM_SANDWICH_MR1)
             settings.setAllowUniversalAccessFromFileURLs(true);
-        */
         // Enable database
         settings.setDatabaseEnabled(true);
         String databasePath = this.cordova.getActivity().getApplicationContext().getDir("database", Context.MODE_PRIVATE).getPath();