Repository: cordova-plugin-inappbrowser Updated Branches: refs/heads/master 832ff5f2e -> 5fc1beed0
CB-7133 clarify that anchor1 doesn't exist Project: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/commit/5fc1beed Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/tree/5fc1beed Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/diff/5fc1beed Branch: refs/heads/master Commit: 5fc1beed0d3cbc4fbe34764d7a4614878240a2ec Parents: 832ff5f Author: Marcel Kinard <[email protected]> Authored: Wed Aug 27 17:15:55 2014 -0400 Committer: Marcel Kinard <[email protected]> Committed: Wed Aug 27 17:15:55 2014 -0400 ---------------------------------------------------------------------- tests/tests.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-plugin-inappbrowser/blob/5fc1beed/tests/tests.js ---------------------------------------------------------------------- diff --git a/tests/tests.js b/tests/tests.js index 0c1d09d..2482377 100644 --- a/tests/tests.js +++ b/tests/tests.js @@ -281,7 +281,7 @@ exports.defineManualTests = function (contentEl, createActionButton) { var local_with_anchor_tag_tests = '<h1>Local with anchor tag</h1>' + '<div id="openAnchor1"></div>' + - 'Expected result: open successfully in InAppBrowser to the local page, scrolled to the top.' + + 'Expected result: open successfully in InAppBrowser to the local page, scrolled to the top as normal.' + '<p/> <div id="openAnchor2"></div>' + 'Expected result: open successfully in InAppBrowser to the local page, scrolled to the beginning of the tall div with border.'; @@ -450,7 +450,7 @@ exports.defineManualTests = function (contentEl, createActionButton) { //Local With Anchor Tag createActionButton('Anchor1', function () { - doOpen(localhtml + '#anchor1', '_blank'); + doOpen(localhtml + '#bogusanchor', '_blank'); }, 'openAnchor1'); createActionButton('Anchor2', function () { doOpen(localhtml + '#anchor2', '_blank');
