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

Unified Diff: LayoutTests/plugins/npruntime/get-int-identifier-special-values.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/npruntime/get-int-identifier-special-values.html
diff --git a/LayoutTests/plugins/npruntime/get-int-identifier-special-values.html b/LayoutTests/plugins/npruntime/get-int-identifier-special-values.html
deleted file mode 100644
index 0d5a65e8f7583f398f120c126f162181f657608e..0000000000000000000000000000000000000000
--- a/LayoutTests/plugins/npruntime/get-int-identifier-special-values.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<html>
-<body>
- <pre id="console"></pre>
- <embed id="plg" type="application/x-webkit-test-netscape"></embed>
- <script>
- function log(message)
- {
- document.getElementById("console").appendChild(document.createTextNode(message + "\n"));
- }
-
- if (window.testRunner)
- testRunner.dumpAsText();
-
- var plugin = document.getElementById("plg");
-
- var pass = true;
-
- var firstOneID = plugin.testGetIntIdentifier(1);
- var firstZeroID = plugin.testGetIntIdentifier(0);
- var firstMinusOneID = plugin.testGetIntIdentifier(-1);
-
- if (firstOneID == firstZeroID) {
- log ("FAIL: getIntIdentifier(1) and getIntIdentifier(0) returned the same identifier: " + firstOneID);
- pass = false;
- }
-
- if (firstOneID == firstMinusOneID) {
- log ("FAIL: getIntIdentifier(1) and getIntIdentifier(-1) returned the same identifier: " + firstOneID);
- pass = false;
- }
-
- if (firstMinusOneID == firstZeroID) {
- log ("FAIL: getIntIdentifier(0) and getIntIdentifier(-1) returned the same identifier: " + firstZeroID);
- pass = false;
- }
-
- var secondOneID = plugin.testGetIntIdentifier(1);
- var secondZeroID = plugin.testGetIntIdentifier(0);
- var secondMinusOneID = plugin.testGetIntIdentifier(-1);
-
- if (firstOneID != secondOneID) {
- log("FAIL: getIntIdentifier(1) returned " + firstOneID + " the first time and " + secondOneID + " the second time.");
- pass = false;
- }
-
- if (firstZeroID != secondZeroID) {
- log("FAIL: getIntIdentifier(0) returned " + firstZeroID + " the first time and " + secondZeroID + " the second time.");
- pass = false;
- }
-
- if (firstMinusOneID != secondMinusOneID) {
- log("FAIL: getIntIdentifier(-1) returned " + firstMinusOneID + " the first time and " + secondMinusOneID + " the second time.");
- pass = false;
- }
-
- if (pass)
- log("PASS: getIntIdentifier(n) returned consistent identifiers for n = 1, 0 and -1.");
-
- </script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698