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

Unified Diff: Source/core/loader/FormSubmission.cpp

Issue 542683002: Remove DialogElement runtime flag (status=stable) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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
« no previous file with comments | « Source/core/html/HTMLDialogElement.idl ('k') | Source/core/rendering/RenderTheme.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/loader/FormSubmission.cpp
diff --git a/Source/core/loader/FormSubmission.cpp b/Source/core/loader/FormSubmission.cpp
index c3197be33713e54b117eb3f678bd5137ef124fce..02864b8e129fdf9e69882ee76ae3de901fdcf14f 100644
--- a/Source/core/loader/FormSubmission.cpp
+++ b/Source/core/loader/FormSubmission.cpp
@@ -108,7 +108,7 @@ FormSubmission::Method FormSubmission::Attributes::parseMethodType(const String&
{
if (equalIgnoringCase(type, "post"))
return FormSubmission::PostMethod;
- if (RuntimeEnabledFeatures::dialogElementEnabled() && equalIgnoringCase(type, "dialog"))
+ if (equalIgnoringCase(type, "dialog"))
return FormSubmission::DialogMethod;
return FormSubmission::GetMethod;
}
« no previous file with comments | « Source/core/html/HTMLDialogElement.idl ('k') | Source/core/rendering/RenderTheme.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698