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

Unified Diff: third_party/WebKit/LayoutTests/plugins/form-value.html

Issue 1840893002: Remove compositing/plugins/invalidate_rect.html and plugins/form-value.html (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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: third_party/WebKit/LayoutTests/plugins/form-value.html
diff --git a/third_party/WebKit/LayoutTests/plugins/form-value.html b/third_party/WebKit/LayoutTests/plugins/form-value.html
deleted file mode 100644
index 6d89b628eb5dd6f6d666d71a42741f0e2913215c..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/plugins/form-value.html
+++ /dev/null
@@ -1,31 +0,0 @@
-<p>This tests that WebKit can obtain form value from plugins</p>
-<form action="" id="form">
- <object type="application/x-webkit-test-netscape" test="form-value" name="plugin"></object>
-</form>
-<div id="console"></div>
-<script>
-if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
-}
-
-function log(message) {
- var div = document.createElement('div');
- div.innerHTML = message;
- var console = document.getElementById('console');
- console.appendChild(div);
-}
-
-if (document.location.href.indexOf('?') == -1) {
- document.getElementById('form').submit();
-} else {
- var values = document.location.search.substring(1);
- log('form values: "' + values + '"');
- if (values == 'plugin=Plugin+form+value')
- log('PASS: The form value was successfully obtained.');
- else
- log('FAIL: Could not obtain the form value correctly.');
- if (window.testRunner)
- testRunner.notifyDone();
-}
-</script>

Powered by Google App Engine
This is Rietveld 408576698