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
This commit is contained in:
Jonathan Almeida [:jonalmeida] 2015-10-20 13:34:44 -04:00
parent abdc06c33c
commit a3723c48e7
2 changed files with 3 additions and 3 deletions

View File

@ -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"

View File

@ -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;
}