summaryrefslogtreecommitdiffstats
path: root/content/test/data
diff options
context:
space:
mode:
authorzea@chromium.org <zea@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-20 18:33:30 +0000
committerzea@chromium.org <zea@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-09-20 18:33:30 +0000
commit09cce462153d6b99d4bc1555a5e6545599b96c09 (patch)
tree813102d930a573d8411df486df351609162053e3 /content/test/data
parentce42088b0d04b3abb385f81a067bf33005b0808d (diff)
downloadchromium_src-09cce462153d6b99d4bc1555a5e6545599b96c09.zip
chromium_src-09cce462153d6b99d4bc1555a5e6545599b96c09.tar.gz
chromium_src-09cce462153d6b99d4bc1555a5e6545599b96c09.tar.bz2
Revert 157773 - This is followup from Charlie's comments on Fady's cl: http://chromiumcodereview.appspot.com/10560022, it seems I cannot upload patch to that issue (since I'm not owner), I'm creating a new one.
NavigateGuest is flaky on windows (crashes at shutdown) Split Embedder and Guest 'roles' for browser plugin, web contents can now play any or both roles, main idea is to have more readable separation between the two. Also stop creating browser_plugin counterpart in browser/host for every web_contents, instead create them only when there's a browser_plugin element. BUG= 141232 Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=157650 Review URL: https://chromiumcodereview.appspot.com/10868012 TBR=lazyboy@chromium.org Review URL: https://codereview.chromium.org/10968015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@157801 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/test/data')
-rw-r--r--content/test/data/browser_plugin_embedder.html18
-rw-r--r--content/test/data/browser_plugin_embedder_crash.html17
-rw-r--r--content/test/data/browser_plugin_focus.html21
-rw-r--r--content/test/data/browser_plugin_focus_child.html6
-rw-r--r--content/test/data/browser_plugin_title_change.html12
5 files changed, 0 insertions, 74 deletions
diff --git a/content/test/data/browser_plugin_embedder.html b/content/test/data/browser_plugin_embedder.html
deleted file mode 100644
index 31a7846..0000000
--- a/content/test/data/browser_plugin_embedder.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<script type="text/javascript">
-function SetSrc(src) {
- plugin = document.getElementById('plugin');
- plugin.src = src;
-}
-function SetSize(w, h) {
- plugin = document.getElementById('plugin');
- plugin.width = w;
- plugin.height = h;
-}
-</script>
-
-<object id="plugin"
- tabindex="0"
- type="application/new-browser-plugin"
- width="640"
- height="480"
- border="0px"></object>
diff --git a/content/test/data/browser_plugin_embedder_crash.html b/content/test/data/browser_plugin_embedder_crash.html
deleted file mode 100644
index fd066e5..0000000
--- a/content/test/data/browser_plugin_embedder_crash.html
+++ /dev/null
@@ -1,17 +0,0 @@
-<script type="text/javascript">
-function SetSrc(src) {
- plugin = document.getElementById('plugin');
- plugin.src = src;
-}
-function SetSize(w, h) {
- plugin = document.getElementById('plugin');
- plugin.width = w;
- plugin.height = h;
-}
-</script>
-
-<!-- The plugin size is same as the browser's size -->
-<object id="plugin"
- tabindex="0"
- type="application/new-browser-plugin"
- style="height: 100%; width: 100%; border: 0px"></object>
diff --git a/content/test/data/browser_plugin_focus.html b/content/test/data/browser_plugin_focus.html
deleted file mode 100644
index 280de3c..0000000
--- a/content/test/data/browser_plugin_focus.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<html>
-<head>
-<script type="text/javascript">
- function SetSrc(src) {
- plugin = document.getElementById('plugin');
- plugin.src = src;
- }
-</script>
-</head>
-
-<body>
- <button id="before" tabindex="0">Before</button>
- <object id="plugin"
- tabindex="0"
- type="application/new-browser-plugin"
- width="640"
- height="480"
- border="0px"></object>
- <button id="after" tabindex="0">After</button>
-</body>
-</html>
diff --git a/content/test/data/browser_plugin_focus_child.html b/content/test/data/browser_plugin_focus_child.html
deleted file mode 100644
index 133fc0d..0000000
--- a/content/test/data/browser_plugin_focus_child.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<html>
- <body>
- <button id="before" tabindex="0">Before</button>
- <button id="after" tabindex="0">After</button>
- </body>
-</html>
diff --git a/content/test/data/browser_plugin_title_change.html b/content/test/data/browser_plugin_title_change.html
deleted file mode 100644
index 0ad78e8a..0000000
--- a/content/test/data/browser_plugin_title_change.html
+++ /dev/null
@@ -1,12 +0,0 @@
-<html>
- <head>
- <script type="text/javascript">
- function SetTitle(title) {
- document.title = title;
- }
- </script>
- </head>
- <body>
- <script>SetTitle('done');</script>
- </body>
-</html>