| Index: third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp b/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp
|
| index 56eebfafa6362cc3964e3fecfba0dfb2732fafeb..a56b695443b20f87aeff67ebc5721fb75f51e740 100644
|
| --- a/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/ProcessingInstruction.cpp
|
| @@ -120,12 +120,12 @@ bool ProcessingInstruction::checkStyleSheet(String& href, String& charset) {
|
| if (!m_isCSS && !m_isXSL)
|
| return false;
|
|
|
| - href = attrs.get("href");
|
| - charset = attrs.get("charset");
|
| - String alternate = attrs.get("alternate");
|
| + href = attrs.at("href");
|
| + charset = attrs.at("charset");
|
| + String alternate = attrs.at("alternate");
|
| m_alternate = alternate == "yes";
|
| - m_title = attrs.get("title");
|
| - m_media = attrs.get("media");
|
| + m_title = attrs.at("title");
|
| + m_media = attrs.at("media");
|
|
|
| return !m_alternate || !m_title.isEmpty();
|
| }
|
|
|