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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/submit-form-not-attached-to-document.html

Issue 2405973003: M54: Revert r414590 (Closed)
Patch Set: Created 4 years, 2 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/cookies/same-site/popup-cross-site-post.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/forms/submit-form-not-attached-to-document.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/submit-form-not-attached-to-document.html b/third_party/WebKit/LayoutTests/fast/forms/submit-form-not-attached-to-document.html
deleted file mode 100644
index bda23a6bc530892c05d86acc0865451c1d6aeaa2..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/submit-form-not-attached-to-document.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<script src="../../resources/testharness.js"></script>
-<script src="../../resources/testharnessreport.js"></script>
-<body>
- <form action="javascript: redirect()"></form>
-<script>
-var f1 = document.forms[0];
-test(function() {
- f1.parentNode.removeChild(f1);
- f1.submit();
-}, 'Submitting a form that has been removed.');
-
-var f2 = document.createElement('form');
-f2.action = "javascript: redirect()";
-test(function() {
- f2.submit();
-}, 'Submitting a form that has never been attached to the document.');
-
-function redirect() {
- assert_unreached('A form should never be submitted if it is not attached to the document.');
-}
-
-</script>
-</body>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/cookies/same-site/popup-cross-site-post.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698