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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/misc/resources/check-keygen-post.php

Issue 2536993002: Remove support for the keygen tag (Closed)
Patch Set: Rebased Created 4 years 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/http/tests/misc/resources/check-keygen-post.php
diff --git a/third_party/WebKit/LayoutTests/http/tests/misc/resources/check-keygen-post.php b/third_party/WebKit/LayoutTests/http/tests/misc/resources/check-keygen-post.php
deleted file mode 100644
index e185a9687e85406270cadb27a75ea384c80089ae..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/misc/resources/check-keygen-post.php
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php
-header("Content-Type: text/html; charset=UTF-8");
-?>
-<html>
-<head>
-<script>
-
-function runTest()
-{
- var r = document.getElementById('result');
- var o = document.getElementById('output').firstChild;
- if (o.nodeValue == 'spkac exists')
- r.innerHTML = "SUCCESS: keygen was parsed correctly";
- else
- r.innerHTML = "FAILURE: keygen was not parsed correctly. value=" +
- o.nodeValue;
-
- if (window.testRunner)
- testRunner.notifyDone();
-}
-
-</script>
-</head>
-<body onload="runTest()">
-<p>
-This is a regression test for keygen tag POST processing: https://bugs.webkit.org/show_bug.cgi?id=70617.
-</p>
-<div style='display: none;' id='output'><?php
-if (array_key_exists('spkac', $_REQUEST)) {
- echo "spkac exists";
-} else {
- echo "spkac does not exist";
-}
-?>
-</div>
-<div id="result"></div>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698