| Index: third_party/WebKit/Source/core/html/HTMLKeygenElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLKeygenElement.cpp b/third_party/WebKit/Source/core/html/HTMLKeygenElement.cpp
|
| index a7eaec25442f22b924b0ac68a650a238583c2303..e8e674ae69cb0e0263175418d5d60c58b90fc556 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLKeygenElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLKeygenElement.cpp
|
| @@ -103,7 +103,7 @@ void HTMLKeygenElement::appendToFormData(FormData& formData)
|
| const AtomicString& keyType = fastGetAttribute(keytypeAttr);
|
| if (!keyType.isNull() && !equalIgnoringCase(keyType, "rsa"))
|
| return;
|
| - String value = Platform::current()->signedPublicKeyAndChallengeString(shadowSelect()->selectedIndex(), fastGetAttribute(challengeAttr), document().baseURL());
|
| + String value = Platform::current()->signedPublicKeyAndChallengeString(shadowSelect()->selectedIndex(), fastGetAttribute(challengeAttr), document().baseURL(), document().topDocument().baseURL());
|
| if (!value.isNull())
|
| formData.append(name(), value);
|
| }
|
|
|