1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

76 lines
3.6 KiB

## 3.4\. Web Compatibility
### 3.4.1\. WebView Compatibility
If device implementations provide a complete implementation of the
`android.webkit.Webview` API, they:
* [C-1-1] MUST report `android.software.webview`.
* [C-1-2] MUST use the [Chromium](http://www.chromium.org/) Project build
from the upstream Android Open Source Project on the Android
ANDROID_VERSION branch for the implementation of the
[`android.webkit.WebView`](
http://developer.android.com/reference/android/webkit/WebView.html)
API.
* [C-1-3] The user agent string reported by the WebView MUST be in this format:
Mozilla/5.0 (Linux; Android $(VERSION); \[$(MODEL)\] \[Build/$(BUILD)\]; wv)
AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 $(CHROMIUM_VER) Mobile
Safari/537.36
* The value of the $(VERSION) string MUST be the same as the value for
android.os.Build.VERSION.RELEASE.
* The $(MODEL) string MAY be empty, but if it is not empty it MUST have
the same value as android.os.Build.MODEL.
* "Build/$(BUILD)" MAY be omitted, but if it is present the $(BUILD)
string MUST be the same as the value for android.os.Build.ID.
* The value of the $(CHROMIUM_VER) string MUST be the version of Chromium
in the upstream Android Open Source Project.
* Device implementations MAY omit Mobile in the user agent string.
* The WebView component SHOULD include support for as many HTML5 features as
possible and if it supports the feature SHOULD conform to the
[HTML5 specification](http://html.spec.whatwg.org/multipage/).
* [C-1-3] MUST render the provided content or remote URL content in a process
that is distinct from the application that instantiates the WebView. Specifically
the separate renderer process MUST hold lower privilege, run
as a separate user ID, have no access to the app's data directory,
have no direct network access, and only have access to the minimum-required
system services over Binder. The AOSP implementation of WebView meets
this requirement.
Note that if device implementations are 32-bit or declare the feature flag
`android.hardware.ram.low`, they are exempted from C-1-3.
### 3.4.2\. Browser Compatibility
If device implementations include a standalone Browser application for general
web browsing, they:
* [C-1-1] MUST support each of these APIs associated with
HTML5:
* [application cache/offline operation](
http://www.w3.org/html/wg/drafts/html/master/browsers.html#offline)
* [<video> tag](
http://www.w3.org/html/wg/drafts/html/master/semantics.html#video)
* [geolocation](http://www.w3.org/TR/geolocation-API/)
* [C-1-2] MUST support the HTML5/W3C [webstorage API](
http://www.w3.org/TR/webstorage/) and SHOULD support the HTML5/W3C
[IndexedDB API](http://www.w3.org/TR/IndexedDB/). Note that as the web
development standards bodies are transitioning to favor IndexedDB over
webstorage, IndexedDB is expected to become a required component in a
future version of Android.
* MAY ship a custom user agent string in the standalone Browser application.
* SHOULD implement support for as much of [HTML5](
http://html.spec.whatwg.org/multipage/) as possible on the standalone
Browser application (whether based on the upstream WebKit Browser
application or a third-party replacement).
However, If device implementations do not include a standalone Browser
application, they:
* [C-2-1] MUST still support the public intent patterns as described in
[section 3.2.3.1](#3_2_3_1_core_application_intents).