Commit a3723c48 authored by Jonathan Almeida [:jonalmeida]'s avatar Jonathan Almeida [:jonalmeida]
Browse files

Bug 1216350 - Tablet favicon is busted and upside-down. r=mcomella

--HG--
extra : transplant_source : %7F%B5%A8%EC%9Ao7%16%BC%AA%BD%E8%3B%BDZR%94%2Aw%C0
parent abdc06c3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
<merge xmlns:android="http://schemas.android.com/apk/res/android"
       xmlns:gecko="http://schemas.android.com/apk/res-auto">

   <ImageButton
   <ImageView
        android:id="@+id/favicon"
        android:layout_width="@dimen/browser_toolbar_favicon_size"
        android:layout_height="match_parent"
+2 −2
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ import org.mozilla.gecko.R;

import com.jayway.android.robotium.solo.Condition;
import android.view.View;
import android.widget.ImageButton;
import android.widget.ImageView;

/**
 * This patch tests the clear private data options:
@@ -126,7 +126,7 @@ public class testClearPrivateData extends PixelTest {
        mSolo.waitForCondition(new Condition() {
            @Override
            public boolean isSatisfied() {
                ImageButton btn = (ImageButton) mSolo.getView(R.id.favicon);
                ImageView btn = (ImageView) mSolo.getView(R.id.favicon);
                mSolo.clickOnView(btn);
                return true;
            }