HomeSort by relevance Sort by last modified time
    Searched defs:rootStyle (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/rendering/
MediaControlElements.cpp 69 RefPtr<RenderStyle> rootStyle = RenderStyle::create();
70 rootStyle->inheritFrom(mediaElement->renderer()->style());
71 rootStyle->setDisplay(BLOCK);
72 rootStyle->setPosition(RelativePosition);
74 renderer->setStyle(rootStyle.release());
  /external/webkit/WebCore/css/
MediaQueryEvaluator.cpp 309 RenderStyle* rootStyle = frame->document()->documentElement()->renderStyle();
310 return value->isPrimitiveValue() && compareValue(static_cast<int>(sg.height()), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style, rootStyle), op);
321 RenderStyle* rootStyle = frame->document()->documentElement()->renderStyle();
322 return value->isPrimitiveValue() && compareValue(static_cast<int>(sg.width()), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style, rootStyle), op);
332 RenderStyle* rootStyle = frame->document()->documentElement()->renderStyle();
335 return value->isPrimitiveValue() && compareValue(view->layoutHeight(), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style, rootStyle), op);
343 RenderStyle* rootStyle = frame->document()->documentElement()->renderStyle();
346 return value->isPrimitiveValue() && compareValue(view->layoutWidth(), static_cast<CSSPrimitiveValue*>(value)->computeLengthInt(style, rootStyle), op);

Completed in 234 milliseconds