Merge "Show web content before handling new intent"
diff --git a/src/com/android/browser/Controller.java b/src/com/android/browser/Controller.java
index 551be38..19ad9a9 100644
--- a/src/com/android/browser/Controller.java
+++ b/src/com/android/browser/Controller.java
@@ -601,6 +601,9 @@
 
     @Override
     public void handleNewIntent(Intent intent) {
+        if (!mUi.isWebShowing()) {
+            mUi.showWeb(false);
+        }
         mIntentHandler.onNewIntent(intent);
     }