diff --git a/docs/html/about/versions/android-5.0.jd b/docs/html/about/versions/android-5.0.jd
index f8d8ab6d71f48..a438420996001 100644
--- a/docs/html/about/versions/android-5.0.jd
+++ b/docs/html/about/versions/android-5.0.jd
@@ -23,6 +23,7 @@ sdk.platform.apiLevel=21
If your app uses getRecentTasks()...
If you are using the Android Native Development Kit (NDK)...
If your app binds to a Service...
+If your app uses a WebView...
User Interface
@@ -234,8 +235,8 @@ the system can present notifications correctly in
vibration.
Setting the device to
-{@link android.media.AudioManager#RINGER_MODE_SILENT RINGER_MODE_SILENT} now
-causes the device to enter the new priority mode. The device leaves priority
+{@link android.media.AudioManager#RINGER_MODE_SILENT RINGER_MODE_SILENT} causes
+the device to enter the new priority mode. The device leaves priority
mode if you set it to
{@link android.media.AudioManager#RINGER_MODE_NORMAL RINGER_MODE_NORMAL} or
{@link android.media.AudioManager#RINGER_MODE_NORMAL RINGER_MODE_VIBRATE}.
@@ -366,6 +367,31 @@ and throws an exception if given an implicit intent.
To ensure your app is secure, use an explicit intent when starting or binding
your {@link android.app.Service}, and do not declare intent filters for the service.
+If your app uses WebView...
+
+Android 5.0 changes the default behavior for your app.
+
+- If your app targets API level 21 or higher:
+
+ - The system
+ blocks mixed content and third party cookies by default. To allow mixed
+ content and third party cookies, use the
+ {@link android.webkit.WebSettings#setMixedContentMode(int) setMixedContentMode()}
+and {@link android.webkit.CookieManager#setAcceptThirdPartyCookies(android.webkit.WebView, boolean) setAcceptThirdPartyCookies()}
+methods respectively.
+ - The system now intelligently chooses portions of the HTML
+ document to draw. This new default behavior helps to reduce memory
+ footprint and increase performance. If you want to
+ render the whole document at once, disable this optimization by calling
+ {@link android.webkit.WebView#enableSlowWholeDocumentDraw()}.
+
+
+- If your app targets API levels lower than 21: The system
+ allows mixed content and third party cookies, and always renders the whole
+ document at once.
+
+
User Interface
Material design support
@@ -470,7 +496,7 @@ request the user’s permission by launching a screen capture dialog using an
method.
For an example of how to use the new APIs, see the {@code MediaProjectionDemo}
-class in the {@code ApiDemos} sample project.
+class in the sample project.
Notifications