diff options
author | fsamuel@chromium.org <fsamuel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-26 06:03:40 +0000 |
---|---|---|
committer | fsamuel@chromium.org <fsamuel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-26 06:03:40 +0000 |
commit | 6bfc220cd4df1577ebae83bf421134222d80b7bf (patch) | |
tree | c6e2b54143e9ed98e43924141111ac0b304d0c1b /content/test/data | |
parent | 122503f1d53450ad9065b907333ce84cf8706bb2 (diff) | |
download | chromium_src-6bfc220cd4df1577ebae83bf421134222d80b7bf.zip chromium_src-6bfc220cd4df1577ebae83bf421134222d80b7bf.tar.gz chromium_src-6bfc220cd4df1577ebae83bf421134222d80b7bf.tar.bz2 |
<webview>: Move back, forward, canGoBack, canGoForward, go from content to chrome
BUG=166165
Test=WebViewTest.Navigation
Review URL: https://chromiumcodereview.appspot.com/17447005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@208642 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/test/data')
-rw-r--r-- | content/test/data/browser_plugin_embedder.html | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/content/test/data/browser_plugin_embedder.html b/content/test/data/browser_plugin_embedder.html index 914c12a..85ad2db 100644 --- a/content/test/data/browser_plugin_embedder.html +++ b/content/test/data/browser_plugin_embedder.html @@ -43,26 +43,6 @@ function PostMessage(data, shouldTargetIframe) { plugin.contentWindow.frames.postMessage('testing123', '*'); } } -function Back() { - var plugin = document.getElementById('plugin'); - plugin.back(); -} -function CanGoBack() { - var plugin = document.getElementById('plugin'); - return plugin.canGoBack(); -} -function CanGoForward() { - var plugin = document.getElementById('plugin'); - return plugin.canGoForward(); -} -function Forward() { - var plugin = document.getElementById('plugin'); - plugin.forward(); -} -function Go(relativeIndex) { - var plugin = document.getElementById('plugin'); - plugin.go(relativeIndex); -} function SetTitle(str) { document.title = str; } |