Durable Storage: Refactor browser test and test the basic "deny" flow.
[chromium-blink-merge.git] / chrome / android / java / res / drawable / action_bar_activity_bg.xml
blobe974f2e3cab69327c84e292b758281bc6d749543
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- Copyright 2015 The Chromium Authors. All rights reserved.
3      Use of this source code is governed by a BSD-style license that can be
4      found in the LICENSE file. -->
6 <!-- On pre-KitKat devices the window background extends above the action bar
7      and is normally hidden behind the status bar, but during window
8      transitions, is visible and looks glitchy. As a workaround, we make the top
9      50dp of the window background transparent. 50dp is greater than the status
10      bar height (to prevent the visual glitch) and less than the status bar +
11      action bar height (to ensure the background covers the entire activity). On
12      KitKat and later devices, Android clips the window background correctly and
13      these shenanigans aren't needed. http://crbug.com/448012 -->
14 <layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
15     <item
16         android:drawable="@android:color/white"
17         android:top="50dp" />
18 </layer-list>