Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

No issue: fixes refreshTest #5792

Merged
merged 1 commit into from
Oct 8, 2019
Merged
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
6 changes: 3 additions & 3 deletions app/src/androidTest/assets/pages/refresh.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@

if (currentCookie.localeCompare("REFRESHED") == 0) {
setCookie("DEFAULT");
return "My little test page - DEFAULT";
return "DEFAULT";
} else {
setCookie("REFRESHED");
return "My little test page - REFRESHED!";
return "REFRESHED";
}
}

Expand All @@ -40,6 +40,6 @@
});
</script>
<body>
<h1>My little test page - DEFAULT</h1>
<h1>DEFAULT</h1>
</body>
</html>