Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(693)

Unified Diff: content/test/data/browser_plugin_embedder.html

Issue 17447005: <webview>: Move back, forward, canGoBack, canGoForward, go from content to chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@filter_listener
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/browser_plugin/browser_plugin_bindings.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/data/browser_plugin_embedder.html
diff --git a/content/test/data/browser_plugin_embedder.html b/content/test/data/browser_plugin_embedder.html
index 914c12a67769603b35389228ff972c081e003d12..85ad2dbaa997420f4203c715ce259129e18342d3 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;
}
« no previous file with comments | « content/renderer/browser_plugin/browser_plugin_bindings.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698