Home | History | Annotate | Download | only in webapps

Lines Matching full:console

8   <li>You can debug your web app using console methods in JavaScript</li>
15 <li><a href="#Browser">Using Console APIs in the Android Browser</a></li>
16 <li><a href="#WebView">Using Console APIs in WebView</a></li>
28 using the {@code console} JavaScript APIs, which output messages to logcat. If you're familiar with
30 with using {@code console} (such as {@code console.log()}). Android's WebKit framework supports most
36 <h2 id="Browser">Using Console APIs in the Android Browser</h2>
43 those written using JavaScript {@code console} APIs.</p>
54 <p>When you call a {@code console} function (in the DOM's {@code window.console} object),
58 console.log("Hello World");
62 Console: Hello World http://www.example.com/hello.html :82
66 using. On Android 2.1 and higher, console messages from the Android Browser
70 <p>Android's WebKit does not implement all of the console APIs available in other desktop browsers.
73 <li>{@code console.log(String)}</li>
74 <li>{@code console.info(String)}</li>
75 <li>{@code console.warn(String)}</li>
76 <li>{@code console.error(String)}</li>
79 <p>Other console functions don't raise errors, but might not behave the same as what you
84 <h2 id="WebView">Using Console APIs in WebView</h2>
87 same console APIs are supported when debugging your web page in WebView. On Android
88 1.6 and lower, console messages are automatically sent to logcat with the
92 onConsoleMessage()} callback method, in order for console messages to appear in logcat.</p>
137 android.webkit.ConsoleMessage.MessageLevel MessageLevel} to indicate the type of console message
144 android.webkit.WebChromeClient#onConsoleMessage(ConsoleMessage)}, when you execute a console method