Index: third_party/WebKit/Source/web/tests/MHTMLTest.cpp |
diff --git a/third_party/WebKit/Source/web/tests/MHTMLTest.cpp b/third_party/WebKit/Source/web/tests/MHTMLTest.cpp |
index 4aef940df81f40b738d5ec6c44bc58cd258cbe92..569c3cddbdc5c74689049433bb057b2c6c1d0655 100644 |
--- a/third_party/WebKit/Source/web/tests/MHTMLTest.cpp |
+++ b/third_party/WebKit/Source/web/tests/MHTMLTest.cpp |
@@ -145,7 +145,9 @@ protected: |
MHTMLArchive::EncodingPolicy encodingPolicy, |
const String& title, const String& mimeType) |
{ |
- String boundary = MHTMLArchive::generateMHTMLBoundary(); |
+ // This boundary is as good as any other. Plus it gets used in almost |
+ // all the examples in the MHTML spec - RFC 2557. |
+ String boundary = String::fromUTF8("boundary-example"); |
RefPtr<SharedBuffer> mhtmlData = SharedBuffer::create(); |
MHTMLArchive::generateMHTMLHeader(boundary, title, mimeType, *mhtmlData); |