| Index: Source/core/html/HTMLEmbedElement.cpp
|
| diff --git a/Source/core/html/HTMLEmbedElement.cpp b/Source/core/html/HTMLEmbedElement.cpp
|
| index ca9eb32825c585a4d9663d62430a11750f88a92e..5d49a4802c748c23f3830a498821b2e2c158af78 100644
|
| --- a/Source/core/html/HTMLEmbedElement.cpp
|
| +++ b/Source/core/html/HTMLEmbedElement.cpp
|
| @@ -90,7 +90,7 @@ void HTMLEmbedElement::collectStyleForPresentationAttribute(const QualifiedName&
|
| void HTMLEmbedElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
|
| {
|
| if (name == typeAttr) {
|
| - m_serviceType = value.string().lower();
|
| + m_serviceType = value.lower();
|
| size_t pos = m_serviceType.find(";");
|
| if (pos != kNotFound)
|
| m_serviceType = m_serviceType.left(pos);
|
|
|