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

Unified Diff: LayoutTests/plugins/npruntime/throw-exception.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/throw-exception.html
diff --git a/LayoutTests/plugins/npruntime/throw-exception.html b/LayoutTests/plugins/npruntime/throw-exception.html
deleted file mode 100644
index 5dff86c4eb47cba2d29c8d6b0e8edd5657fc97a9..0000000000000000000000000000000000000000
--- a/LayoutTests/plugins/npruntime/throw-exception.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<html>
-<script>
-function runTest()
-{
- if (window.testRunner)
- testRunner.dumpAsText();
-
- var plugin = document.getElementById("testPlugin");
- var result1 = document.getElementById('result1');
- try {
- plugin.testThrowException();
- } catch (e) {
- result1.innerHTML = e.message;
- }
- var result2 = document.getElementById('result2');
- try {
- plugin.testObject.throwException();
- } catch (e) {
- result2.innerHTML = e.message;
- }
-}
-</script>
-
-<body onload="runTest();">
-<embed id="testPlugin" type="application/x-webkit-test-netscape" width="200" height="200"></embed>
-This tests that a plugin can throw exceptions. If this test is successful the text "SUCCESS" twice below.
-<div id="result1">FAILURE</div>
-<div id="result2">FAILURE</div>
-</body>
-</html>
« no previous file with comments | « LayoutTests/plugins/npruntime/set-property-expected.txt ('k') | LayoutTests/plugins/npruntime/throw-exception-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698