| Index: third_party/WebKit/Source/core/html/HTMLEmbedElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLEmbedElement.cpp b/third_party/WebKit/Source/core/html/HTMLEmbedElement.cpp
|
| index d02331b3af6b1c9a1095f2fb5de602b4d6ae71a9..720401dc40d044534bc29fe6f15cd8b836d8e87a 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLEmbedElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLEmbedElement.cpp
|
| @@ -95,7 +95,7 @@ void HTMLEmbedElement::CollectStyleForPresentationAttribute(
|
| void HTMLEmbedElement::ParseAttribute(
|
| const AttributeModificationParams& params) {
|
| if (params.name == typeAttr) {
|
| - service_type_ = params.new_value.Lower();
|
| + service_type_ = params.new_value.DeprecatedLower();
|
| size_t pos = service_type_.Find(";");
|
| if (pos != kNotFound)
|
| service_type_ = service_type_.Left(pos);
|
|
|