Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1028)

Unified Diff: Source/core/html/HTMLObjectElement.cpp

Issue 560273004: Use AtomicString API directly (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add more Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/HTMLLinkElement.cpp ('k') | Source/core/html/HTMLTextAreaElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLObjectElement.cpp
diff --git a/Source/core/html/HTMLObjectElement.cpp b/Source/core/html/HTMLObjectElement.cpp
index 0bc59f1e126a3d40f752d831a1ce05a612276f65..3d588cdd406fedfea8d5204e2d01b0c788e2cd72 100644
--- a/Source/core/html/HTMLObjectElement.cpp
+++ b/Source/core/html/HTMLObjectElement.cpp
@@ -339,7 +339,7 @@ void HTMLObjectElement::childrenChanged(const ChildrenChange& change)
bool HTMLObjectElement::isURLAttribute(const Attribute& attribute) const
{
return attribute.name() == codebaseAttr || attribute.name() == dataAttr
- || (attribute.name() == usemapAttr && attribute.value().string()[0] != '#')
+ || (attribute.name() == usemapAttr && attribute.value()[0] != '#')
|| HTMLPlugInElement::isURLAttribute(attribute);
}
« no previous file with comments | « Source/core/html/HTMLLinkElement.cpp ('k') | Source/core/html/HTMLTextAreaElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698