diff options
Diffstat (limited to 'src/com/android')
-rw-r--r-- | src/com/android/browser/IntentHandler.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/android/browser/IntentHandler.java b/src/com/android/browser/IntentHandler.java index e4b3201..2a34aba 100644 --- a/src/com/android/browser/IntentHandler.java +++ b/src/com/android/browser/IntentHandler.java @@ -178,6 +178,8 @@ public class IntentHandler { current.getWebView().dumpRenderTree(true); } else if ("about:debug.display".equals(urlData.mUrl)) { current.getWebView().dumpDisplayTree(); + } else if ("about:debug.nav".equals(urlData.mUrl)) { + current.getWebView().debugDump(); } else { mSettings.toggleDebugSettings(); } |