Index: Source/core/inspector/InspectorStyleSheet.cpp |
diff --git a/Source/core/inspector/InspectorStyleSheet.cpp b/Source/core/inspector/InspectorStyleSheet.cpp |
index d82532290b04448f41616618e7020081db410dd8..145bbc75ceb03cc2046e528fce81b8e5441ad00f 100644 |
--- a/Source/core/inspector/InspectorStyleSheet.cpp |
+++ b/Source/core/inspector/InspectorStyleSheet.cpp |
@@ -1695,7 +1695,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; |