Skip to content
This repository has been archived by the owner on Apr 3, 2020. It is now read-only.

[Embeddingapi] Improve XWalkViewWithScrollChanged usecase #3652

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public void onXWalkInitCompleted() {
.append("Verifies onTouchEvent work in XWalkView.\n\n")
.append("Expected Result:\n\n")
.append("Test passes if the the message\n\n" +
"'onTouchEvent is invoked; Action is UP/DOWN/MOVE' ");
"'onScrollChanged is invoked' and it's parameter list is shown after you scroll the page");
new AlertDialog.Builder(this)
.setTitle("Info")
.setMessage(mess.toString())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ public class XWalkViewWithScrollChanged extends XWalkActivity implements ScrollC
protected void onXWalkReady() {
StringBuffer mess = new StringBuffer();
mess.append("Test Purpose: \n\n")
.append("Verifies onTouchEvent work in XWalkView.\n\n")
.append("Verifies onScrollChanged work in XWalkView.\n\n")
.append("Expected Result:\n\n")
.append("Test passes if the the message\n\n" +
"'onTouchEvent is invoked; Action is UP/DOWN/MOVE' ");
"'onScrollChanged is invoked' and it's parameter list is shown after you scroll the page");

new AlertDialog.Builder(this)
.setTitle("Info")
.setMessage(mess.toString())
Expand Down