summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/npapi
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test/data/npapi')
-rw-r--r--chrome/test/data/npapi/click_to_play.html13
-rw-r--r--chrome/test/data/npapi/clicktoplay.html18
-rw-r--r--chrome/test/data/npapi/load_all_blocked_plugins.html24
3 files changed, 0 insertions, 55 deletions
diff --git a/chrome/test/data/npapi/click_to_play.html b/chrome/test/data/npapi/click_to_play.html
deleted file mode 100644
index 1ad3678..0000000
--- a/chrome/test/data/npapi/click_to_play.html
+++ /dev/null
@@ -1,13 +0,0 @@
-<html>
-<head>
-<script src="npapi.js"></script>
-</head>
-<body>
-<embed type="application/vnd.npapi-test"
- src="foo"
- name="setup"
- id="1"
- mode="np_embed"
->
-</body>
-</html> \ No newline at end of file
diff --git a/chrome/test/data/npapi/clicktoplay.html b/chrome/test/data/npapi/clicktoplay.html
deleted file mode 100644
index 204c511..0000000
--- a/chrome/test/data/npapi/clicktoplay.html
+++ /dev/null
@@ -1,18 +0,0 @@
-<html>
-<head>
-<title>Click To Play</title>
-<script>
-function PluginCreated() {
- document.title = "OK";
-}
-</script>
-</head>
-<embed type="application/vnd.npapi-test"
- src="foo"
- name="invoke_js_function_on_create"
- id="1"
- mode="np_embed"
->
-</embed>
-</body>
-</html>
diff --git a/chrome/test/data/npapi/load_all_blocked_plugins.html b/chrome/test/data/npapi/load_all_blocked_plugins.html
deleted file mode 100644
index 8ae05db..0000000
--- a/chrome/test/data/npapi/load_all_blocked_plugins.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<html>
-<head>
-<script>
-var count = 0;
-function PluginCreated() {
- count++;
- document.title = count.toString();
-}
-
-var id = 1;
-function inject() {
- var child = document.createElement("div");
- child.innerHTML = '<embed type="application/vnd.npapi-test" src="foo" '+
- 'name="invoke_js_function_on_create" ' +
- 'id="' + id + '" mode="np_embed">';
- document.getElementById("content").appendChild(child);
- id++;
-}
-</script>
-</head>
-<body onload="inject();">
-<div id="content"></div>
-</body>
-</html>