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; |
} |