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

Unified Diff: LayoutTests/plugins/object-embed-plugin-scripting.html

Issue 1319473007: Delete a bunch of NPAPI layout tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 5 years, 3 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
Index: LayoutTests/plugins/object-embed-plugin-scripting.html
diff --git a/LayoutTests/plugins/object-embed-plugin-scripting.html b/LayoutTests/plugins/object-embed-plugin-scripting.html
deleted file mode 100644
index e7d5397b568bb70901700746308dc08b93173f5d..0000000000000000000000000000000000000000
--- a/LayoutTests/plugins/object-embed-plugin-scripting.html
+++ /dev/null
@@ -1,139 +0,0 @@
-<html>
-<head>
-<script>
-function print(message)
-{
- var paragraph = document.createElement("p");
- paragraph.appendChild(document.createTextNode(message));
- document.getElementById("console").appendChild(paragraph);
-}
-
-function test()
-{
- if (window.testRunner) {
- testRunner.dumpAsText();
- }
-
- print("plugin <object> with nested plugin <embed>: should have a plugin and does " + (document.getElementById('myO').testCallback ? "" : "not"));
- print("plugin <embed> netsted in plugin <object>: should have a plugin and does " + (document.getElementById('myE').testCallback ? "" : "not"));
- print("empty <object> with nested plugin <embed>: should not have a plugin and does " + (document.getElementById('myO2').testCallback ? "" : "not"));
- print("plugin <embed> nested in empty <object>: should have a plugin and does " + (document.getElementById('myE2').testCallback ? "" : "not"));
- print("plugin <embed> nested in image <object>: should not have a plugin and does " + (document.getElementById('myE3').testCallback ? "" : "not"));
- print("plugin <embed> nested in empty <object> nested in plugin <object>: should not have a plugin and does " + (document.getElementById('myE4').testCallback ? "" : "not"));
- print("standalone plugin <embed>: should have a plugin and does " + (document.getElementById('myE5').testCallback ? "" : "not"));
-
- function showPlugin(p) {
- return p.testCallback ? ("[" + p.getAttribute('location') + "]") : "not";
- }
- print("plugin <object> with nested plugin <embed> of the same name should have an <embed> plugin and does " + showPlugin(document.Plugin));
- print("empty <object> with nested plugin <embed> of the same name should have an <embed> plugin and does " + showPlugin(document.Plugin2));
-}
-</script>
-</head>
-<body onload="test()">
-<p>This test checks for a regression against <i>rdar://problem/4214080 document.embeds: embeds[0].Play() undefined at languageguide.org</i>.</p>
-<p>Each test below states its expected outcome.</p>
-<hr>
-<div id="console"></div>
-
-<OBJECT
- id="myO"
- type="application/x-webkit-test-netscape"
- width = 0 height = 0
- >
- <PARAM name="src" value="resources/simple_blank.swf">
- <PARAM name="autostart" value="false">
-
- <EMBED
- id="myE"
- type="application/x-webkit-test-netscape"
- autostart="false"
- enablejavascript="true"
- width = 0 height = 0
- >
- </EMBED>
-</OBJECT>
-
-<object id="myO2">
- <embed
- id="myE2"
- type="application/x-webkit-test-netscape"
- autostart="false"
- enablejavascript="true"
- width = 0 height = 0
- >
-</object>
-
-<object
- data="resources/apple.gif"
- type="image/gif"
- width = 0 height = 0
->
- <embed
- id="myE3"
- type="application/x-webkit-test-netscape"
- autostart="false"
- enablejavascript="true"
- width = 0 height = 0
- >
-</object>
-
-<object
- data="resources/apple.gif"
- type="image/gif"
- width = 0 height = 0
->
- <object>
- <embed
- id="myE4"
- type="application/x-webkit-test-netscape"
- autostart="false"
- enablejavascript="true"
- width = 0 height = 0
- >
- </object>
-</object>
-
-<embed
- id="myE5"
- type="application/x-webkit-test-netscape"
- autostart="false"
- enablejavascript="true"
- width = 0 height = 0
->
-
-<object
- name="Plugin"
- type="application/x-webkit-test-netscape"
- width = 0 height = 0
- location="outer"
- >
- <param name="src" value="resources/simple_blank.swf">
- <param name="autostart" value="false">
- <param name="enablejavascript" value="true">
-
- <embed
- name="Plugin"
- type="application/x-webkit-test-netscape"
- autostart="false"
- enablejavascript="true"
- width = 0 height = 0
- location="inner"
- >
- </embed>
-</object>
-
-<object name="Plugin2" location="outer">
- <embed
- name="Plugin2"
- type="application/x-webkit-test-netscape"
- autostart="false"
- enablejavascript="true"
- width = 0 height = 0
- location="inner"
- >
- </embed>
-</object>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698