Home
last modified time | relevance | path

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

/external/webkit/WebCore/inspector/front-end/
DInjectedScript.js147 var tempStyle = parseElement.style;
148 if (tempStyle.length || !styleTextLength) {
164 if (!tempStyle.length)
171 var uniqueProperties = InjectedScript._getUniqueStyleProperties(tempStyle);
174 var shorthand = tempStyle.getPropertyShorthand(name);
180 var value = InjectedScript._getShorthandValue(tempStyle, shorthand);
181 var priority = InjectedScript._getShorthandPriority(tempStyle, shorthand);
184 var value = tempStyle.getPropertyValue(name);
185 var priority = tempStyle.getPropertyPriority(name);
/external/skia/src/ports/
DSkFontHost_FreeType.cpp1039 int tempStyle = SkTypeface::kNormal; in find_name_and_style() local
1042 tempStyle |= SkTypeface::kBold; in find_name_and_style()
1045 tempStyle |= SkTypeface::kItalic; in find_name_and_style()
1048 *style = (SkTypeface::Style)tempStyle; in find_name_and_style()