Home
last modified time | relevance | path

Searched refs:propertyData (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorStyleSheet.cpp281 Vector<CSSPropertySourceData>& propertyData = ruleData->styleSourceData->propertyData; in fixUnparsedProperties() local
282 unsigned size = propertyData.size(); in fixUnparsedProperties()
287 CSSPropertySourceData* nextData = &(propertyData.at(0)); in fixUnparsedProperties()
290 nextData = i < size - 1 ? &(propertyData.at(i + 1)) : 0; in fixUnparsedProperties()
368 m_currentRuleDataStack.last()->styleSourceData->propertyData.append( in endProperty()
419 …or<CSSPropertySourceData>& commentPropertyData = sourceData.first()->styleSourceData->propertyData; in endComment()
422 CSSPropertySourceData& propertyData = commentPropertyData.at(0); in endComment() local
423 if (propertyData.range.length() != commentText.length()) in endComment()
427 m_currentRuleDataStack.last()->styleSourceData->propertyData.append( in endComment()
428 …CSSPropertySourceData(propertyData.name, propertyData.value, false, true, true, SourceRange(startO… in endComment()
[all …]
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSPropertySourceData.h80 Vector<CSSPropertySourceData> propertyData; member