| Index: Source/core/inspector/InspectorStyleSheet.cpp
 | 
| diff --git a/Source/core/inspector/InspectorStyleSheet.cpp b/Source/core/inspector/InspectorStyleSheet.cpp
 | 
| index d0a81fed8d0dac2111410b813062de518dc0d32c..332603154ec0a0d87b265f7a0bfd1ecaf65ec6b7 100644
 | 
| --- a/Source/core/inspector/InspectorStyleSheet.cpp
 | 
| +++ b/Source/core/inspector/InspectorStyleSheet.cpp
 | 
| @@ -1691,7 +1691,8 @@ bool InspectorStyleSheet::inlineStyleSheetText(String* result) const
 | 
|          return false;
 | 
|      Element* ownerElement = toElement(ownerNode);
 | 
|  
 | 
| -    if (!ownerElement->hasTagName(HTMLNames::styleTag) && !ownerElement->hasTagName(SVGNames::styleTag))
 | 
| +    // FIXME: Handle @viewport rules.
 | 
| +    if (!ownerElement->hasTagName(HTMLNames::styleTag) && !ownerElement->hasTagName(SVGNames::styleTag) && !ownerElement->hasTagName(HTMLNames::metaTag))
 | 
|          return false;
 | 
|      *result = ownerElement->textContent();
 | 
|      return true;
 | 
| 
 |