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 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484
|
/*
* Copyright (C) 1999 Lars Knoll (knoll@kde.org)
* (C) 2004-2005 Allan Sandfeld Jensen (kde@carewolf.com)
* Copyright (C) 2006, 2007 Nicholas Shanks (webkit@nickshanks.com)
* Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013 Apple Inc.
* All rights reserved.
* Copyright (C) 2007 Alexey Proskuryakov <ap@webkit.org>
* Copyright (C) 2007, 2008 Eric Seidel <eric@webkit.org>
* Copyright (C) 2008, 2009 Torch Mobile Inc. All rights reserved.
* (http://www.torchmobile.com/)
* Copyright (c) 2011, Code Aurora Forum. All rights reserved.
* Copyright (C) Research In Motion Limited 2011. All rights reserved.
* Copyright (C) 2013 Google Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "core/css/resolver/StyleAdjuster.h"
#include "core/HTMLNames.h"
#include "core/SVGNames.h"
#include "core/dom/ContainerNode.h"
#include "core/dom/Document.h"
#include "core/dom/Element.h"
#include "core/frame/FrameView.h"
#include "core/frame/Settings.h"
#include "core/frame/UseCounter.h"
#include "core/html/HTMLIFrameElement.h"
#include "core/html/HTMLInputElement.h"
#include "core/html/HTMLPlugInElement.h"
#include "core/html/HTMLTableCellElement.h"
#include "core/html/HTMLTextAreaElement.h"
#include "core/layout/LayoutTheme.h"
#include "core/style/ComputedStyle.h"
#include "core/style/ComputedStyleConstants.h"
#include "core/svg/SVGSVGElement.h"
#include "platform/Length.h"
#include "platform/transforms/TransformOperations.h"
#include "wtf/Assertions.h"
namespace blink {
using namespace HTMLNames;
static EDisplay equivalentBlockDisplay(EDisplay display) {
switch (display) {
case EDisplay::Block:
case EDisplay::Table:
case EDisplay::WebkitBox:
case EDisplay::Flex:
case EDisplay::Grid:
case EDisplay::ListItem:
return display;
case EDisplay::InlineTable:
return EDisplay::Table;
case EDisplay::WebkitInlineBox:
return EDisplay::WebkitBox;
case EDisplay::InlineFlex:
return EDisplay::Flex;
case EDisplay::InlineGrid:
return EDisplay::Grid;
case EDisplay::Inline:
case EDisplay::InlineBlock:
case EDisplay::TableRowGroup:
case EDisplay::TableHeaderGroup:
case EDisplay::TableFooterGroup:
case EDisplay::TableRow:
case EDisplay::TableColumnGroup:
case EDisplay::TableColumn:
case EDisplay::TableCell:
case EDisplay::TableCaption:
return EDisplay::Block;
case EDisplay::None:
case EDisplay::Contents:
ASSERT_NOT_REACHED();
return display;
}
ASSERT_NOT_REACHED();
return EDisplay::Block;
}
static bool isOutermostSVGElement(const Element* element) {
return element && element->isSVGElement() &&
toSVGElement(*element).isOutermostSVGSVGElement();
}
// CSS requires text-decoration to be reset at each DOM element for
// inline blocks, inline tables, shadow DOM crossings, floating elements,
// and absolute or relatively positioned elements. Outermost <svg> roots are
// considered to be atomic inline-level.
static bool doesNotInheritTextDecoration(const ComputedStyle& style,
const Element* element) {
return style.display() == EDisplay::InlineTable ||
style.display() == EDisplay::InlineBlock ||
style.display() == EDisplay::WebkitInlineBox ||
isAtShadowBoundary(element) || style.isFloating() ||
style.hasOutOfFlowPosition() || isOutermostSVGElement(element) ||
isHTMLRTElement(element);
}
// Certain elements (<a>, <font>) override text decoration colors. "The font
// element is expected to override the color of any text decoration that spans
// the text of the element to the used value of the element's 'color' property."
// (https://html.spec.whatwg.org/multipage/rendering.html#phrasing-content-3)
// The <a> behavior is non-standard.
static bool overridesTextDecorationColors(const Element* element) {
return element &&
(isHTMLFontElement(element) || isHTMLAnchorElement(element));
}
// FIXME: This helper is only needed because pseudoStyleForElement passes a null
// element to adjustComputedStyle, so we can't just use element->isInTopLayer().
static bool isInTopLayer(const Element* element, const ComputedStyle& style) {
return (element && element->isInTopLayer()) ||
style.styleType() == PseudoIdBackdrop;
}
static bool parentStyleForcesZIndexToCreateStackingContext(
const ComputedStyle& parentStyle) {
return parentStyle.isDisplayFlexibleOrGridBox();
}
void StyleAdjuster::adjustStyleForEditing(ComputedStyle& style) {
if (style.userModify() != READ_WRITE_PLAINTEXT_ONLY)
return;
// Collapsing whitespace is harmful in plain-text editing.
if (style.whiteSpace() == EWhiteSpace::kNormal)
style.setWhiteSpace(EWhiteSpace::kPreWrap);
else if (style.whiteSpace() == EWhiteSpace::kNowrap)
style.setWhiteSpace(EWhiteSpace::kPre);
else if (style.whiteSpace() == EWhiteSpace::kPreLine)
style.setWhiteSpace(EWhiteSpace::kPreWrap);
}
static void adjustStyleForFirstLetter(ComputedStyle& style) {
if (style.styleType() != PseudoIdFirstLetter)
return;
// Force inline display (except for floating first-letters).
style.setDisplay(style.isFloating() ? EDisplay::Block : EDisplay::Inline);
// CSS2 says first-letter can't be positioned.
style.setPosition(StaticPosition);
}
void StyleAdjuster::adjustStyleForAlignment(ComputedStyle& style,
const ComputedStyle& parentStyle) {
// To avoid needing to copy the RareNonInheritedData, we repurpose the 'auto'
// flag to not just mean 'auto' prior to running the StyleAdjuster but also
// mean 'normal' after running it.
// If the inherited value of justify-items includes the 'legacy' keyword,
// 'auto' computes to the the inherited value. Otherwise, 'auto' computes to
// 'normal'.
if (style.justifyItemsPosition() == ItemPositionAuto) {
if (parentStyle.justifyItemsPositionType() == LegacyPosition)
style.setJustifyItems(parentStyle.justifyItems());
}
// The 'auto' keyword computes the computed value of justify-items on the
// parent (minus any legacy keywords), or 'normal' if the box has no parent.
if (style.justifySelfPosition() == ItemPositionAuto) {
if (parentStyle.justifyItemsPositionType() == LegacyPosition)
style.setJustifySelfPosition(parentStyle.justifyItemsPosition());
else if (parentStyle.justifyItemsPosition() != ItemPositionAuto)
style.setJustifySelf(parentStyle.justifyItems());
}
// The 'auto' keyword computes the computed value of align-items on the parent
// or 'normal' if the box has no parent.
if (style.alignSelfPosition() == ItemPositionAuto &&
parentStyle.alignItemsPosition() !=
ComputedStyle::initialDefaultAlignment().position())
style.setAlignSelf(parentStyle.alignItems());
}
static void adjustStyleForHTMLElement(ComputedStyle& style,
HTMLElement& element) {
// <div> and <span> are the most common elements on the web, we skip all the
// work for them.
if (isHTMLDivElement(element) || isHTMLSpanElement(element))
return;
if (isHTMLTableCellElement(element)) {
if (style.whiteSpace() == EWhiteSpace::kWebkitNowrap) {
// Figure out if we are really nowrapping or if we should just
// use normal instead. If the width of the cell is fixed, then
// we don't actually use NOWRAP.
if (style.width().isFixed())
style.setWhiteSpace(EWhiteSpace::kNormal);
else
style.setWhiteSpace(EWhiteSpace::kNowrap);
}
return;
}
if (isHTMLTableElement(element)) {
// Tables never support the -webkit-* values for text-align and will reset
// back to the default.
if (style.textAlign() == ETextAlign::kWebkitLeft ||
style.textAlign() == ETextAlign::kWebkitCenter ||
style.textAlign() == ETextAlign::kWebkitRight)
style.setTextAlign(ETextAlign::kStart);
return;
}
if (isHTMLFrameElement(element) || isHTMLFrameSetElement(element)) {
// Frames and framesets never honor position:relative or position:absolute.
// This is necessary to fix a crash where a site tries to position these
// objects. They also never honor display.
style.setPosition(StaticPosition);
style.setDisplay(EDisplay::Block);
return;
}
if (isHTMLFrameElementBase(element)) {
// Frames cannot overflow (they are always the size we ask them to be).
// Some compositing code paths may try to draw scrollbars anyhow.
style.setOverflowX(EOverflow::Visible);
style.setOverflowY(EOverflow::Visible);
return;
}
if (isHTMLRTElement(element)) {
// Ruby text does not support float or position. This might change with
// evolution of the specification.
style.setPosition(StaticPosition);
style.setFloating(EFloat::kNone);
return;
}
if (isHTMLLegendElement(element)) {
style.setDisplay(EDisplay::Block);
return;
}
if (isHTMLMarqueeElement(element)) {
// For now, <marquee> requires an overflow clip to work properly.
style.setOverflowX(EOverflow::Hidden);
style.setOverflowY(EOverflow::Hidden);
return;
}
if (isHTMLTextAreaElement(element)) {
// Textarea considers overflow visible as auto.
style.setOverflowX(style.overflowX() == EOverflow::Visible
? EOverflow::Auto
: style.overflowX());
style.setOverflowY(style.overflowY() == EOverflow::Visible
? EOverflow::Auto
: style.overflowY());
return;
}
if (isHTMLPlugInElement(element)) {
style.setRequiresAcceleratedCompositingForExternalReasons(
toHTMLPlugInElement(element).shouldAccelerate());
return;
}
}
static void adjustOverflow(ComputedStyle& style) {
DCHECK(style.overflowX() != EOverflow::Visible ||
style.overflowY() != EOverflow::Visible);
if (style.display() == EDisplay::Table ||
style.display() == EDisplay::InlineTable) {
// Tables only support overflow:hidden and overflow:visible and ignore
// anything else, see http://dev.w3.org/csswg/css2/visufx.html#overflow. As
// a table is not a block container box the rules for resolving conflicting
// x and y values in CSS Overflow Module Level 3 do not apply. Arguably
// overflow-x and overflow-y aren't allowed on tables but all UAs allow it.
if (style.overflowX() != EOverflow::Hidden)
style.setOverflowX(EOverflow::Visible);
if (style.overflowY() != EOverflow::Hidden)
style.setOverflowY(EOverflow::Visible);
// If we are left with conflicting overflow values for the x and y axes on a
// table then resolve both to OverflowVisible. This is interoperable
// behaviour but is not specced anywhere.
if (style.overflowX() == EOverflow::Visible)
style.setOverflowY(EOverflow::Visible);
else if (style.overflowY() == EOverflow::Visible)
style.setOverflowX(EOverflow::Visible);
} else if (style.overflowX() == EOverflow::Visible &&
style.overflowY() != EOverflow::Visible) {
// If either overflow value is not visible, change to auto.
// FIXME: Once we implement pagination controls, overflow-x should default
// to hidden if overflow-y is set to -webkit-paged-x or -webkit-page-y. For
// now, we'll let it default to auto so we can at least scroll through the
// pages.
style.setOverflowX(EOverflow::Auto);
} else if (style.overflowY() == EOverflow::Visible &&
style.overflowX() != EOverflow::Visible) {
style.setOverflowY(EOverflow::Auto);
}
// Menulists should have visible overflow
if (style.appearance() == MenulistPart) {
style.setOverflowX(EOverflow::Visible);
style.setOverflowY(EOverflow::Visible);
}
}
static void adjustStyleForDisplay(ComputedStyle& style,
const ComputedStyle& parentStyle,
Document* document) {
if (style.display() == EDisplay::Block && !style.isFloating())
return;
// FIXME: Don't support this mutation for pseudo styles like first-letter or
// first-line, since it's not completely clear how that should work.
if (style.display() == EDisplay::Inline &&
style.styleType() == PseudoIdNone &&
style.getWritingMode() != parentStyle.getWritingMode())
style.setDisplay(EDisplay::InlineBlock);
// After performing the display mutation, check table rows. We do not honor
// position: relative table rows. This has been established for position:
// relative in CSS2.1 (and caused a crash in containingBlock() on some sites).
if ((style.display() == EDisplay::TableHeaderGroup ||
style.display() == EDisplay::TableRowGroup ||
style.display() == EDisplay::TableFooterGroup ||
style.display() == EDisplay::TableRow) &&
style.position() == RelativePosition)
style.setPosition(StaticPosition);
// Cannot support position: sticky for table columns and column groups because
// current code is only doing background painting through columns / column
// groups.
if ((style.display() == EDisplay::TableColumnGroup ||
style.display() == EDisplay::TableColumn) &&
style.position() == StickyPosition)
style.setPosition(StaticPosition);
// writing-mode does not apply to table row groups, table column groups, table
// rows, and table columns.
// FIXME: Table cells should be allowed to be perpendicular or flipped with
// respect to the table, though.
if (style.display() == EDisplay::TableColumn ||
style.display() == EDisplay::TableColumnGroup ||
style.display() == EDisplay::TableFooterGroup ||
style.display() == EDisplay::TableHeaderGroup ||
style.display() == EDisplay::TableRow ||
style.display() == EDisplay::TableRowGroup ||
style.display() == EDisplay::TableCell)
style.setWritingMode(parentStyle.getWritingMode());
// FIXME: Since we don't support block-flow on flexible boxes yet, disallow
// setting of block-flow to anything other than TopToBottomWritingMode.
// https://bugs.webkit.org/show_bug.cgi?id=46418 - Flexible box support.
if (style.getWritingMode() != WritingMode::kHorizontalTb &&
(style.display() == EDisplay::WebkitBox ||
style.display() == EDisplay::WebkitInlineBox))
style.setWritingMode(WritingMode::kHorizontalTb);
if (parentStyle.isDisplayFlexibleOrGridBox()) {
style.setFloating(EFloat::kNone);
style.setDisplay(equivalentBlockDisplay(style.display()));
// We want to count vertical percentage paddings/margins on flex items
// because our current behavior is different from the spec and we want to
// gather compatibility data.
if (style.paddingBefore().isPercentOrCalc() ||
style.paddingAfter().isPercentOrCalc())
UseCounter::count(document, UseCounter::FlexboxPercentagePaddingVertical);
if (style.marginBefore().isPercentOrCalc() ||
style.marginAfter().isPercentOrCalc())
UseCounter::count(document, UseCounter::FlexboxPercentageMarginVertical);
}
}
void StyleAdjuster::adjustComputedStyle(ComputedStyle& style,
const ComputedStyle& parentStyle,
Element* element) {
if (style.display() != EDisplay::None &&
style.display() != EDisplay::Contents) {
if (element && element->isHTMLElement())
adjustStyleForHTMLElement(style, toHTMLElement(*element));
// Per the spec, position 'static' and 'relative' in the top layer compute
// to 'absolute'.
if (isInTopLayer(element, style) && (style.position() == StaticPosition ||
style.position() == RelativePosition))
style.setPosition(AbsolutePosition);
// Absolute/fixed positioned elements, floating elements and the document
// element need block-like outside display.
if (style.hasOutOfFlowPosition() || style.isFloating() ||
(element && element->document().documentElement() == element))
style.setDisplay(equivalentBlockDisplay(style.display()));
// We don't adjust the first letter style earlier because we may change the
// display setting in adjustStyeForTagName() above.
adjustStyleForFirstLetter(style);
adjustStyleForDisplay(style, parentStyle,
element ? &element->document() : 0);
// Paint containment forces a block formatting context, so we must coerce
// from inline. https://drafts.csswg.org/css-containment/#containment-paint
if (style.containsPaint() && style.display() == EDisplay::Inline)
style.setDisplay(EDisplay::Block);
} else {
adjustStyleForFirstLetter(style);
}
if (element && element->hasCompositorProxy())
style.setHasCompositorProxy(true);
// Make sure our z-index value is only applied if the object is positioned.
if (style.position() == StaticPosition &&
!parentStyleForcesZIndexToCreateStackingContext(parentStyle)) {
style.setIsStackingContext(false);
// TODO(alancutter): Avoid altering z-index here.
if (!style.hasAutoZIndex())
style.setZIndex(0);
} else if (!style.hasAutoZIndex()) {
style.setIsStackingContext(true);
}
if (style.overflowX() != EOverflow::Visible ||
style.overflowY() != EOverflow::Visible)
adjustOverflow(style);
if (doesNotInheritTextDecoration(style, element))
style.clearAppliedTextDecorations();
else
style.restoreParentTextDecorations(parentStyle);
style.applyTextDecorations(
parentStyle.visitedDependentColor(CSSPropertyTextDecorationColor),
overridesTextDecorationColors(element));
// Cull out any useless layers and also repeat patterns into additional
// layers.
style.adjustBackgroundLayers();
style.adjustMaskLayers();
// Let the theme also have a crack at adjusting the style.
if (style.hasAppearance())
LayoutTheme::theme().adjustStyle(style, element);
// If we have first-letter pseudo style, transitions, or animations, do not
// share this style.
if (style.hasPseudoStyle(PseudoIdFirstLetter) || style.transitions() ||
style.animations())
style.setUnique();
adjustStyleForEditing(style);
bool isSVGElement = element && element->isSVGElement();
if (isSVGElement) {
// Only the root <svg> element in an SVG document fragment tree honors css
// position.
if (!(isSVGSVGElement(*element) && element->parentNode() &&
!element->parentNode()->isSVGElement()))
style.setPosition(ComputedStyle::initialPosition());
// SVG text layout code expects us to be a block-level style element.
if ((isSVGForeignObjectElement(*element) || isSVGTextElement(*element)) &&
style.isDisplayInlineType())
style.setDisplay(EDisplay::Block);
// Columns don't apply to svg text elements.
if (isSVGTextElement(*element))
style.clearMultiCol();
}
adjustStyleForAlignment(style, parentStyle);
}
} // namespace blink
|