1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
|
/*
* Copyright (C) 2012 Adobe Systems Incorporated. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above
* copyright notice, this list of conditions and the following
* disclaimer.
* 2. Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER “AS IS” AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
* THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#include "config.h"
#include "ShapeOutsideInfo.h"
#include "BoxLayoutShape.h"
#include "FloatingObjects.h"
#include "LengthFunctions.h"
#include "RenderBlockFlow.h"
#include "RenderBoxInlines.h"
#include "RenderBoxModelObjectInlines.h"
#include "RenderFragmentContainer.h"
#include "RenderImage.h"
#include "RenderView.h"
#include <wtf/TZoneMallocInlines.h>
#include <wtf/text/MakeString.h>
namespace WebCore {
WTF_MAKE_TZONE_ALLOCATED_IMPL(ShapeOutsideDeltas);
WTF_MAKE_TZONE_ALLOCATED_IMPL(ShapeOutsideInfo);
static LayoutUnit logicalLeftOffset(const RenderBox&);
static LayoutUnit logicalTopOffset(const RenderBox&);
LayoutRect ShapeOutsideInfo::computedShapePhysicalBoundingBox() const
{
LayoutRect physicalBoundingBox = computedShape().shapeMarginLogicalBoundingBox();
if (m_renderer.writingMode().isBlockFlipped())
physicalBoundingBox.setY(m_renderer.logicalHeight() - physicalBoundingBox.maxY());
if (!m_renderer.isHorizontalWritingMode())
physicalBoundingBox = physicalBoundingBox.transposedRect();
return physicalBoundingBox;
}
FloatPoint ShapeOutsideInfo::shapeToRendererPoint(const FloatPoint& point) const
{
FloatPoint result = point;
if (m_renderer.writingMode().isBlockFlipped())
result.setY(m_renderer.logicalHeight() - result.y());
if (!m_renderer.isHorizontalWritingMode())
result = result.transposedPoint();
return result;
}
static LayoutSize computeLogicalBoxSize(const RenderBox& renderer, bool isHorizontalWritingMode)
{
auto& shapeValue = *renderer.style().shapeOutside();
auto size = isHorizontalWritingMode ? renderer.size() : renderer.size().transposedSize();
switch (shapeValue.effectiveCSSBox()) {
case CSSBoxType::MarginBox:
if (isHorizontalWritingMode)
size.expand(renderer.horizontalMarginExtent(), renderer.verticalMarginExtent());
else
size.expand(renderer.verticalMarginExtent(), renderer.horizontalMarginExtent());
break;
case CSSBoxType::BorderBox:
break;
case CSSBoxType::PaddingBox:
if (isHorizontalWritingMode)
size.shrink(renderer.horizontalBorderExtent(), renderer.verticalBorderExtent());
else
size.shrink(renderer.verticalBorderExtent(), renderer.horizontalBorderExtent());
break;
case CSSBoxType::ContentBox:
if (isHorizontalWritingMode)
size.shrink(renderer.horizontalBorderAndPaddingExtent(), renderer.verticalBorderAndPaddingExtent());
else
size.shrink(renderer.verticalBorderAndPaddingExtent(), renderer.horizontalBorderAndPaddingExtent());
break;
case CSSBoxType::FillBox:
case CSSBoxType::StrokeBox:
case CSSBoxType::ViewBox:
case CSSBoxType::BoxMissing:
ASSERT_NOT_REACHED();
break;
}
return size;
}
void ShapeOutsideInfo::invalidateForSizeChangeIfNeeded()
{
auto newSize = computeLogicalBoxSize(m_renderer, m_renderer.containingBlock()->isHorizontalWritingMode());
if (m_cachedShapeLogicalSize == newSize)
return;
markShapeAsDirty();
m_cachedShapeLogicalSize = newSize;
}
static LayoutRect getShapeImageMarginRect(const RenderBox& renderBox, const LayoutSize& referenceBoxLogicalSize)
{
LayoutPoint marginBoxOrigin(-renderBox.marginLogicalLeft() - renderBox.borderAndPaddingLogicalLeft(), -renderBox.marginBefore() - renderBox.borderBefore() - renderBox.paddingBefore());
LayoutSize marginBoxSizeDelta(renderBox.marginLogicalWidth() + renderBox.borderAndPaddingLogicalWidth(), renderBox.marginLogicalHeight() + renderBox.borderAndPaddingLogicalHeight());
LayoutSize marginRectSize(referenceBoxLogicalSize + marginBoxSizeDelta);
marginRectSize.clampNegativeToZero();
return LayoutRect(marginBoxOrigin, marginRectSize);
}
Ref<const LayoutShape> makeShapeForShapeOutside(const RenderBox& renderer)
{
auto& style = renderer.style();
auto& containingBlock = *renderer.containingBlock();
auto writingMode = containingBlock.style().writingMode();
bool isHorizontalWritingMode = containingBlock.isHorizontalWritingMode();
float shapeImageThreshold = style.shapeImageThreshold();
auto& shapeValue = *style.shapeOutside();
auto boxSize = computeLogicalBoxSize(renderer, isHorizontalWritingMode);
auto margin = [&] {
auto shapeMargin = floatValueForLength(style.shapeMargin(), containingBlock.contentBoxWidth());
return isnan(shapeMargin) ? 0.0f : shapeMargin;
}();
switch (shapeValue.type()) {
case ShapeValue::Type::Shape: {
ASSERT(shapeValue.shape());
auto offset = LayoutPoint { logicalLeftOffset(renderer), logicalTopOffset(renderer) };
return LayoutShape::createShape(*shapeValue.shape(), offset, boxSize, writingMode, margin);
}
case ShapeValue::Type::Image: {
ASSERT(shapeValue.isImageValid());
auto* styleImage = shapeValue.image();
auto imageSize = renderer.calculateImageIntrinsicDimensions(styleImage, boxSize, RenderImage::ScaleByUsedZoom::Yes);
styleImage->setContainerContextForRenderer(renderer, imageSize, style.usedZoom());
auto marginRect = getShapeImageMarginRect(renderer, boxSize);
auto* renderImage = dynamicDowncast<RenderImage>(renderer);
auto imageRect = renderImage ? renderImage->replacedContentRect() : LayoutRect { { }, imageSize };
ASSERT(!styleImage->isPending());
RefPtr<Image> image = styleImage->image(const_cast<RenderBox*>(&renderer), imageSize);
return LayoutShape::createRasterShape(image.get(), shapeImageThreshold, imageRect, marginRect, writingMode, margin);
}
case ShapeValue::Type::Box: {
auto shapeRect = computeRoundedRectForBoxShape(shapeValue.effectiveCSSBox(), renderer);
auto flipForWritingAndInlineDirection = [&] {
// FIXME: We should consider this moving to RoundedRect::transposedRect.
if (!isHorizontalWritingMode) {
shapeRect = shapeRect.transposedRect();
auto radiiForBlockDirection = shapeRect.radii();
if (writingMode.isBlockLeftToRight())
shapeRect.setRadii({ radiiForBlockDirection.topLeft(), radiiForBlockDirection.bottomLeft(), radiiForBlockDirection.topRight(), radiiForBlockDirection.bottomRight() });
else
shapeRect.setRadii({ radiiForBlockDirection.topRight(), radiiForBlockDirection.bottomRight(), radiiForBlockDirection.topLeft(), radiiForBlockDirection.bottomLeft() });
}
if (writingMode.isBidiRTL()) {
auto radii = shapeRect.radii();
shapeRect.setRadii({ radii.topRight(), radii.topLeft(), radii.bottomRight(), radii.bottomLeft() });
}
};
flipForWritingAndInlineDirection();
return LayoutShape::createBoxShape(shapeRect, writingMode, margin);
}
}
ASSERT_NOT_REACHED();
return LayoutShape::createBoxShape(RoundedRect { { } }, writingMode, 0);
}
static inline bool checkShapeImageOrigin(Document& document, const StyleImage& styleImage)
{
if (styleImage.isGeneratedImage())
return true;
ASSERT(styleImage.cachedImage());
CachedImage& cachedImage = *(styleImage.cachedImage());
if (cachedImage.isOriginClean(&document.securityOrigin()))
return true;
const URL& url = cachedImage.url();
String urlString = url.isNull() ? "''"_s : url.stringCenterEllipsizedToLength();
document.addConsoleMessage(MessageSource::Security, MessageLevel::Error, makeString("Unsafe attempt to load URL "_s, urlString, '.'));
return false;
}
const LayoutShape& ShapeOutsideInfo::computedShape() const
{
if (!m_shape)
m_shape = makeShapeForShapeOutside(m_renderer);
return *m_shape;
}
static inline LayoutUnit borderBeforeInWritingMode(const RenderBox& renderer, WritingMode writingMode)
{
switch (writingMode.blockDirection()) {
case FlowDirection::TopToBottom: return renderer.borderTop();
case FlowDirection::BottomToTop: return renderer.borderBottom();
case FlowDirection::LeftToRight: return renderer.borderLeft();
case FlowDirection::RightToLeft: return renderer.borderRight();
}
ASSERT_NOT_REACHED();
return renderer.borderBefore();
}
static inline LayoutUnit borderAndPaddingBeforeInWritingMode(const RenderBox& renderer, WritingMode writingMode)
{
switch (writingMode.blockDirection()) {
case FlowDirection::TopToBottom: return renderer.borderTop() + renderer.paddingTop();
case FlowDirection::BottomToTop: return renderer.borderBottom() + renderer.paddingBottom();
case FlowDirection::LeftToRight: return renderer.borderLeft() + renderer.paddingLeft();
case FlowDirection::RightToLeft: return renderer.borderRight() + renderer.paddingRight();
}
ASSERT_NOT_REACHED();
return renderer.borderAndPaddingBefore();
}
static LayoutUnit logicalTopOffset(const RenderBox& renderer)
{
switch (renderer.style().shapeOutside()->effectiveCSSBox()) {
case CSSBoxType::MarginBox:
return -renderer.marginBefore(renderer.containingBlock()->writingMode());
case CSSBoxType::BorderBox:
return 0_lu;
case CSSBoxType::PaddingBox:
return borderBeforeInWritingMode(renderer, renderer.containingBlock()->writingMode());
case CSSBoxType::ContentBox:
return borderAndPaddingBeforeInWritingMode(renderer, renderer.containingBlock()->writingMode());
case CSSBoxType::FillBox:
break;
case CSSBoxType::StrokeBox:
break;
case CSSBoxType::ViewBox:
break;
case CSSBoxType::BoxMissing:
break;
}
ASSERT_NOT_REACHED();
return 0_lu;
}
static inline LayoutUnit borderStartWithStyleForWritingMode(const RenderBox& renderer, const WritingMode writingMode)
{
if (writingMode.isHorizontal()) {
if (writingMode.isInlineLeftToRight())
return renderer.borderLeft();
return renderer.borderRight();
}
if (writingMode.isInlineTopToBottom())
return renderer.borderTop();
return renderer.borderBottom();
}
static inline LayoutUnit borderAndPaddingStartWithStyleForWritingMode(const RenderBox& renderer, const WritingMode writingMode)
{
if (writingMode.isHorizontal()) {
if (writingMode.isInlineLeftToRight())
return renderer.borderLeft() + renderer.paddingLeft();
return renderer.borderRight() + renderer.paddingRight();
}
if (writingMode.isInlineTopToBottom())
return renderer.borderTop() + renderer.paddingTop();
return renderer.borderBottom() + renderer.paddingBottom();
}
static LayoutUnit logicalLeftOffset(const RenderBox& renderer)
{
if (renderer.isRenderFragmentContainer())
return 0_lu;
switch (renderer.style().shapeOutside()->effectiveCSSBox()) {
case CSSBoxType::MarginBox:
return -renderer.marginStart(renderer.containingBlock()->writingMode());
case CSSBoxType::BorderBox:
return 0_lu;
case CSSBoxType::PaddingBox:
return borderStartWithStyleForWritingMode(renderer, renderer.containingBlock()->writingMode());
case CSSBoxType::ContentBox:
return borderAndPaddingStartWithStyleForWritingMode(renderer, renderer.containingBlock()->writingMode());
case CSSBoxType::FillBox:
break;
case CSSBoxType::StrokeBox:
break;
case CSSBoxType::ViewBox:
break;
case CSSBoxType::BoxMissing:
break;
}
ASSERT_NOT_REACHED();
return 0_lu;
}
bool ShapeOutsideInfo::isEnabledFor(const RenderBox& box)
{
ShapeValue* shapeValue = box.style().shapeOutside();
if (!box.isFloating() || !shapeValue)
return false;
switch (shapeValue->type()) {
case ShapeValue::Type::Shape: return shapeValue->shape();
case ShapeValue::Type::Image: return shapeValue->isImageValid() && checkShapeImageOrigin(box.document(), *(shapeValue->image()));
case ShapeValue::Type::Box: return true;
}
ASSERT_NOT_REACHED();
return false;
}
ShapeOutsideDeltas ShapeOutsideInfo::computeDeltasForContainingBlockLine(const RenderBlockFlow& containingBlock, const FloatingObject& floatingObject, LayoutUnit lineTop, LayoutUnit lineHeight)
{
// If we never constructed this shape during layout, we propably don't need to know about it outside of layout in the context of "containing block line".
if (!m_shape && !containingBlock.view().frameView().layoutContext().isInLayout())
return { };
ASSERT(lineHeight >= 0);
LayoutUnit borderBoxTop = containingBlock.logicalTopForFloat(floatingObject) + containingBlock.marginBeforeForChild(m_renderer);
LayoutUnit borderBoxLineTop = lineTop - borderBoxTop;
if (isShapeDirty() || !m_shapeOutsideDeltas.isForLine(borderBoxLineTop, lineHeight)) {
LayoutUnit floatMarginBoxWidth = std::max<LayoutUnit>(0_lu, containingBlock.logicalWidthForFloat(floatingObject));
if (computedShape().lineOverlapsShapeMarginBounds(borderBoxLineTop, lineHeight)) {
LineSegment segment = computedShape().getExcludedInterval(borderBoxLineTop, std::min(lineHeight, shapeLogicalBottom() - borderBoxLineTop));
if (segment.isValid) {
LayoutUnit logicalLeftMargin = containingBlock.writingMode().isLogicalLeftInlineStart() ? containingBlock.marginStartForChild(m_renderer) : containingBlock.marginEndForChild(m_renderer);
LayoutUnit rawLeftMarginBoxDelta { segment.logicalLeft + logicalLeftMargin };
LayoutUnit leftMarginBoxDelta = clampTo<LayoutUnit>(rawLeftMarginBoxDelta, 0_lu, floatMarginBoxWidth);
LayoutUnit logicalRightMargin = containingBlock.writingMode().isLogicalLeftInlineStart() ? containingBlock.marginEndForChild(m_renderer) : containingBlock.marginStartForChild(m_renderer);
LayoutUnit rawRightMarginBoxDelta { segment.logicalRight - containingBlock.logicalWidthForChild(m_renderer) - logicalRightMargin };
LayoutUnit rightMarginBoxDelta = clampTo<LayoutUnit>(rawRightMarginBoxDelta, -floatMarginBoxWidth, 0_lu);
m_shapeOutsideDeltas = ShapeOutsideDeltas(leftMarginBoxDelta, rightMarginBoxDelta, true, borderBoxLineTop, lineHeight);
return m_shapeOutsideDeltas;
}
}
// Lines that do not overlap the shape should act as if the float
// wasn't there for layout purposes. So we set the deltas to remove the
// entire width of the float
m_shapeOutsideDeltas = ShapeOutsideDeltas(floatMarginBoxWidth, -floatMarginBoxWidth, false, borderBoxLineTop, lineHeight);
}
return m_shapeOutsideDeltas;
}
}
|