| Index: third_party/WebKit/Source/modules/accessibility/InspectorTypeBuilderHelper.cpp
 | 
| diff --git a/third_party/WebKit/Source/modules/accessibility/InspectorTypeBuilderHelper.cpp b/third_party/WebKit/Source/modules/accessibility/InspectorTypeBuilderHelper.cpp
 | 
| index 966fced466f839e1af4d5900fa59f0e24184b31e..1085a5bf62778607b831af1cb392550b2281e17f 100644
 | 
| --- a/third_party/WebKit/Source/modules/accessibility/InspectorTypeBuilderHelper.cpp
 | 
| +++ b/third_party/WebKit/Source/modules/accessibility/InspectorTypeBuilderHelper.cpp
 | 
| @@ -188,7 +188,7 @@ PassOwnPtr<AXValueSource> createValueSource(NameSource& nameSource)
 | 
|          if (nameSource.attribute == aria_labelledbyAttr || nameSource.attribute == aria_labeledbyAttr) {
 | 
|              OwnPtr<AXValue> attributeValue = createRelatedNodeListValue(nameSource.relatedObjects, AXValueTypeEnum::IdrefList);
 | 
|              if (!nameSource.attributeValue.isNull())
 | 
| -                attributeValue->setValue(JSONString::create(nameSource.attributeValue.string()).get());
 | 
| +                attributeValue->setValue(protocol::StringValue::create(nameSource.attributeValue.string()).get());
 | 
|              valueSource->setAttributeValue(attributeValue.release());
 | 
|          } else if (nameSource.attribute == QualifiedName::null()) {
 | 
|              valueSource->setNativeSourceValue(createRelatedNodeListValue(nameSource.relatedObjects, AXValueTypeEnum::NodeList));
 | 
| 
 |