Searched refs:blockStyle (Results 1 – 6 of 6) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderMultiColumnSet.cpp | 440 RenderStyle* blockStyle = multiColumnBlockFlow()->style(); in paintColumnRules() local 441 const Color& ruleColor = resolveColor(blockStyle, CSSPropertyWebkitColumnRuleColor); in paintColumnRules() 442 bool ruleTransparent = blockStyle->columnRuleIsTransparent(); in paintColumnRules() 443 EBorderStyle ruleStyle = blockStyle->columnRuleStyle(); in paintColumnRules() 444 LayoutUnit ruleThickness = blockStyle->columnRuleWidth(); in paintColumnRules()
|
D | RenderInline.cpp | 154 …RefPtr<RenderStyle> blockStyle = RenderStyle::createAnonymousStyleWithDisplay(block->style(), BLOC… in updateStyleOfAnonymousBlockContinuations() local 157 blockStyle->setOutlineWidth(newStyle->outlineWidth()); in updateStyleOfAnonymousBlockContinuations() 158 blockStyle->setOutlineStyle(newStyle->outlineStyle()); in updateStyleOfAnonymousBlockContinuations() 159 blockStyle->setOutlineOffset(newStyle->outlineOffset()); in updateStyleOfAnonymousBlockContinuations() 160 blockStyle->setOutlineColor(block->resolveColor(newStyle, CSSPropertyOutlineColor)); in updateStyleOfAnonymousBlockContinuations() 161 blockStyle->setOutlineStyleIsAuto(newStyle->outlineStyleIsAuto()); in updateStyleOfAnonymousBlockContinuations() 162 block->setStyle(blockStyle); in updateStyleOfAnonymousBlockContinuations() 170 blockStyle->setPosition(newStyle->position()); in updateStyleOfAnonymousBlockContinuations() 171 block->setStyle(blockStyle); in updateStyleOfAnonymousBlockContinuations()
|
D | RenderBlock.cpp | 202 static void appendImagesFromStyle(Vector<ImageResource*>& images, RenderStyle& blockStyle) in appendImagesFromStyle() argument 204 appendLayers(images, blockStyle.backgroundLayers()); in appendImagesFromStyle() 205 appendLayers(images, blockStyle.maskLayers()); in appendImagesFromStyle() 207 const ContentData* contentData = blockStyle.contentData(); in appendImagesFromStyle() 212 if (blockStyle.boxReflect()) in appendImagesFromStyle() 213 appendImageIfNotNull(images, blockStyle.boxReflect()->mask().image()); in appendImagesFromStyle() 214 appendImageIfNotNull(images, blockStyle.listStyleImage()); in appendImagesFromStyle() 215 appendImageIfNotNull(images, blockStyle.borderImageSource()); in appendImagesFromStyle() 216 appendImageIfNotNull(images, blockStyle.maskBoxImageSource()); in appendImagesFromStyle() 217 if (blockStyle.shapeOutside()) in appendImagesFromStyle() [all …]
|
D | RenderBlockFlow.cpp | 945 RenderStyle* blockStyle = blockFlow->style(); in MarginInfo() local 949 …oreWithChildren = m_canCollapseWithChildren && !beforeBorderPadding && blockStyle->marginBeforeCol… in MarginInfo() 956 …&& (blockStyle->logicalHeight().isAuto() && !blockStyle->logicalHeight().value()) && blockStyle->m… in MarginInfo()
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | Editor.cpp | 1163 RefPtrWillBeRawPtr<EditingStyle> blockStyle = typingStyle->extractAndRemoveBlockProperties(); in computeAndSetTypingStyle() local 1164 if (!blockStyle->isEmpty()) { in computeAndSetTypingStyle() 1166 ApplyStyleCommand::create(*m_frame.document(), blockStyle.get(), editingAction)->apply(); in computeAndSetTypingStyle()
|
D | ApplyStyleCommand.cpp | 212 RefPtrWillBeRawPtr<EditingStyle> blockStyle = m_style->extractAndRemoveBlockProperties(); in doApply() local 213 if (!blockStyle->isEmpty()) in doApply() 214 applyBlockStyle(blockStyle.get()); in doApply()
|