Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(218)

Side by Side Diff: Source/core/rendering/RenderLayer.cpp

Issue 645023002: [New Multicolumn] Make layer bounding boxes visual and relative to "root". (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
3 * 3 *
4 * Portions are Copyright (C) 1998 Netscape Communications Corporation. 4 * Portions are Copyright (C) 1998 Netscape Communications Corporation.
5 * 5 *
6 * Other contributors: 6 * Other contributors:
7 * Robert O'Callahan <roc+@cs.cmu.edu> 7 * Robert O'Callahan <roc+@cs.cmu.edu>
8 * David Baron <dbaron@fas.harvard.edu> 8 * David Baron <dbaron@fas.harvard.edu>
9 * Christian Biesinger <cbiesinger@web.de> 9 * Christian Biesinger <cbiesinger@web.de>
10 * Randall Jesup <rjesup@wgate.com> 10 * Randall Jesup <rjesup@wgate.com>
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
408 return false; 408 return false;
409 409
410 // If the previous block is absolutely positioned, then we can't be paginate d by the columns block. 410 // If the previous block is absolutely positioned, then we can't be paginate d by the columns block.
411 if (prevBlock->isOutOfFlowPositioned()) 411 if (prevBlock->isOutOfFlowPositioned())
412 return false; 412 return false;
413 413
414 // Otherwise we are paginated by the columns block. 414 // Otherwise we are paginated by the columns block.
415 return true; 415 return true;
416 } 416 }
417 417
418 // Convert a bounding box from flow thread coordinates, relative to |layer|, to visual coordinates, relative to |ancestorLayer|.
419 static void convertFromFlowThreadToVisualBoundingBoxInAncestor(const RenderLayer * layer, const RenderLayer* ancestorLayer, LayoutRect& rect)
420 {
421 RenderLayer* paginationLayer = layer->enclosingPaginationLayer();
422 ASSERT(paginationLayer);
423 RenderFlowThread* flowThread = toRenderFlowThread(paginationLayer->renderer( ));
424 LayoutPoint offsetWithinPaginationLayer;
425 layer->convertToLayerCoords(paginationLayer, offsetWithinPaginationLayer);
426
427 // First make the flow thread rectangle relative to the flow thread, not to |layer|.
428 rect.moveBy(offsetWithinPaginationLayer);
429
430 // Then make the rectangle visual, relative to the fragmentation context. Sp lit our box up into
431 // the actual fragment boxes that render in the columns/pages and unite thos e together to get
432 // our true bounding box.
433 rect = flowThread->fragmentsBoundingBox(rect);
434
435 // Finally, make the visual rectangle relative to |ancestorLayer|.
436 // FIXME: nested fragmentation contexts. For now just give up if there are d ifferent pagination layers involved.
437 if (!ancestorLayer->enclosingPaginationLayer() || ancestorLayer->enclosingPa ginationLayer() != paginationLayer) {
438 // The easy case. The ancestor layer is not within the pagination layer.
439 paginationLayer->convertToLayerCoords(ancestorLayer, rect);
440 return;
441 }
442 // Both this layer and the ancestor layer are inside the pagination layer, s o we need to do some
443 // extra work to find the visual distance from the ancestor.
rune 2014/10/13 09:35:02 I think something like this is clearer: // The an
mstensho (USE GERRIT) 2014/10/13 11:21:27 Done.
rune 2014/10/13 11:25:08 Acknowledged.
444 LayoutPoint offsetFromPaginationLayerToAncestor;
445 ancestorLayer->convertToLayerCoords(paginationLayer, offsetFromPaginationLay erToAncestor);
446 offsetFromPaginationLayerToAncestor = flowThread->flowThreadPointToVisualPoi nt(offsetFromPaginationLayerToAncestor);
447 rect.moveBy(-offsetFromPaginationLayerToAncestor);
448 }
449
418 bool RenderLayer::useRegionBasedColumns() const 450 bool RenderLayer::useRegionBasedColumns() const
419 { 451 {
420 return renderer()->document().regionBasedColumnsEnabled(); 452 return renderer()->document().regionBasedColumnsEnabled();
421 } 453 }
422 454
423 void RenderLayer::updatePaginationRecursive(bool needsPaginationUpdate) 455 void RenderLayer::updatePaginationRecursive(bool needsPaginationUpdate)
424 { 456 {
425 m_isPaginated = false; 457 m_isPaginated = false;
426 m_enclosingPaginationLayer = 0; 458 m_enclosingPaginationLayer = 0;
427 459
(...skipping 1807 matching lines...) Expand 10 before | Expand all | Expand 10 after
2235 convertToLayerCoords(ancestorLayer, result); 2267 convertToLayerCoords(ancestorLayer, result);
2236 return result; 2268 return result;
2237 } 2269 }
2238 2270
2239 LayoutRect RenderLayer::fragmentsBoundingBox(const RenderLayer* ancestorLayer) c onst 2271 LayoutRect RenderLayer::fragmentsBoundingBox(const RenderLayer* ancestorLayer) c onst
2240 { 2272 {
2241 if (!enclosingPaginationLayer()) 2273 if (!enclosingPaginationLayer())
2242 return physicalBoundingBox(ancestorLayer); 2274 return physicalBoundingBox(ancestorLayer);
2243 2275
2244 LayoutRect result = flippedLogicalBoundingBox(); 2276 LayoutRect result = flippedLogicalBoundingBox();
2245 2277 convertFromFlowThreadToVisualBoundingBoxInAncestor(this, ancestorLayer, resu lt);
2246 // Split our box up into the actual fragment boxes that render in the column s/pages and unite those together to
2247 // get our true bounding box.
2248 LayoutPoint offsetWithinPaginationLayer;
2249 convertToLayerCoords(enclosingPaginationLayer(), offsetWithinPaginationLayer );
2250 result.moveBy(offsetWithinPaginationLayer);
2251
2252 RenderFlowThread* enclosingFlowThread = toRenderFlowThread(enclosingPaginati onLayer()->renderer());
2253 result = enclosingFlowThread->fragmentsBoundingBox(result);
2254 enclosingPaginationLayer()->convertToLayerCoords(ancestorLayer, result);
2255 return result; 2278 return result;
2256 } 2279 }
2257 2280
2258 static void expandRectForReflectionAndStackingChildren(const RenderLayer* ancest orLayer, RenderLayer::CalculateBoundsOptions options, LayoutRect& result) 2281 static void expandRectForReflectionAndStackingChildren(const RenderLayer* ancest orLayer, RenderLayer::CalculateBoundsOptions options, LayoutRect& result)
2259 { 2282 {
2260 if (ancestorLayer->reflectionInfo() && !ancestorLayer->reflectionInfo()->ref lectionLayer()->hasCompositedLayerMapping()) 2283 if (ancestorLayer->reflectionInfo() && !ancestorLayer->reflectionInfo()->ref lectionLayer()->hasCompositedLayerMapping())
2261 result.unite(ancestorLayer->reflectionInfo()->reflectionLayer()->boundin gBoxForCompositing(ancestorLayer)); 2284 result.unite(ancestorLayer->reflectionInfo()->reflectionLayer()->boundin gBoxForCompositing(ancestorLayer));
2262 2285
2263 ASSERT(ancestorLayer->stackingNode()->isStackingContext() || !ancestorLayer- >stackingNode()->hasPositiveZOrderList()); 2286 ASSERT(ancestorLayer->stackingNode()->isStackingContext() || !ancestorLayer- >stackingNode()->hasPositiveZOrderList());
2264 2287
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
2309 return m_renderer->view()->unscaledDocumentRect(); 2332 return m_renderer->view()->unscaledDocumentRect();
2310 2333
2311 // The layer created for the RenderFlowThread is just a helper for painting and hit-testing, 2334 // The layer created for the RenderFlowThread is just a helper for painting and hit-testing,
2312 // and should not contribute to the bounding box. The RenderMultiColumnSets will contribute 2335 // and should not contribute to the bounding box. The RenderMultiColumnSets will contribute
2313 // the correct size for the rendered content of the multicol container. 2336 // the correct size for the rendered content of the multicol container.
2314 if (useRegionBasedColumns() && renderer()->isRenderFlowThread()) 2337 if (useRegionBasedColumns() && renderer()->isRenderFlowThread())
2315 return LayoutRect(); 2338 return LayoutRect();
2316 2339
2317 const bool shouldIncludeTransform = paintsWithTransform(PaintBehaviorNormal) || (options == ApplyBoundsChickenEggHacks && transform()); 2340 const bool shouldIncludeTransform = paintsWithTransform(PaintBehaviorNormal) || (options == ApplyBoundsChickenEggHacks && transform());
2318 2341
2319 LayoutRect localClipRect = clipper().localClipRect(); 2342 LayoutRect result = clipper().localClipRect();
2320 if (localClipRect != PaintInfo::infiniteRect()) { 2343 if (result == PaintInfo::infiniteRect()) {
2321 if (shouldIncludeTransform) 2344 LayoutPoint origin;
2322 localClipRect = transform()->mapRect(localClipRect); 2345 result = physicalBoundingBox(ancestorLayer, &origin);
2323 2346
2324 LayoutPoint delta; 2347 const_cast<RenderLayer*>(this)->stackingNode()->updateLayerListsIfNeeded ();
2325 convertToLayerCoords(ancestorLayer, delta); 2348
2326 localClipRect.moveBy(delta); 2349 // Reflections are implemented with RenderLayers that hang off of the re flected layer. However,
2327 return localClipRect; 2350 // the reflection layer subtree does not include the subtree of the pare nt RenderLayer, so
2351 // a recursive computation of stacking children yields no results. This breaks cases when there are stacking
2352 // children of the parent, that need to be included in reflected composi ted bounds.
2353 // Fix this by including composited bounds of stacking children of the r eflected RenderLayer.
2354 if (hasCompositedLayerMapping() && parent() && parent()->reflectionInfo( ) && parent()->reflectionInfo()->reflectionLayer() == this)
2355 expandRectForReflectionAndStackingChildren(parent(), options, result );
2356 else
2357 expandRectForReflectionAndStackingChildren(this, options, result);
2358
2359 // FIXME: We can optimize the size of the composited layers, by not enla rging
2360 // filtered areas with the outsets if we know that the filter is going t o render in hardware.
2361 // https://bugs.webkit.org/show_bug.cgi?id=81239
2362 m_renderer->style()->filterOutsets().expandRect(result);
2328 } 2363 }
2329 2364
2330 LayoutPoint origin;
2331 LayoutRect result = physicalBoundingBox(ancestorLayer, &origin);
2332
2333 const_cast<RenderLayer*>(this)->stackingNode()->updateLayerListsIfNeeded();
2334
2335 // Reflections are implemented with RenderLayers that hang off of the reflec ted layer. However,
2336 // the reflection layer subtree does not include the subtree of the parent R enderLayer, so
2337 // a recursive computation of stacking children yields no results. This brea ks cases when there are stacking
2338 // children of the parent, that need to be included in reflected composited bounds.
2339 // Fix this by including composited bounds of stacking children of the refle cted RenderLayer.
2340 if (hasCompositedLayerMapping() && parent() && parent()->reflectionInfo() && parent()->reflectionInfo()->reflectionLayer() == this)
2341 expandRectForReflectionAndStackingChildren(parent(), options, result);
2342 else
2343 expandRectForReflectionAndStackingChildren(this, options, result);
2344
2345 // FIXME: We can optimize the size of the composited layers, by not enlargin g
2346 // filtered areas with the outsets if we know that the filter is going to re nder in hardware.
2347 // https://bugs.webkit.org/show_bug.cgi?id=81239
2348 m_renderer->style()->filterOutsets().expandRect(result);
2349
2350 if (shouldIncludeTransform) 2365 if (shouldIncludeTransform)
2351 result = transform()->mapRect(result); 2366 result = transform()->mapRect(result);
2352 2367
2368 if (enclosingPaginationLayer()) {
2369 convertFromFlowThreadToVisualBoundingBoxInAncestor(this, ancestorLayer, result);
2370 return result;
2371 }
2353 LayoutPoint delta; 2372 LayoutPoint delta;
2354 convertToLayerCoords(ancestorLayer, delta); 2373 convertToLayerCoords(ancestorLayer, delta);
2355 result.moveBy(delta); 2374 result.moveBy(delta);
2356 return result; 2375 return result;
2357 } 2376 }
2358 2377
2359 CompositingState RenderLayer::compositingState() const 2378 CompositingState RenderLayer::compositingState() const
2360 { 2379 {
2361 ASSERT(isAllowedToQueryCompositingState()); 2380 ASSERT(isAllowedToQueryCompositingState());
2362 2381
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
2847 } 2866 }
2848 } 2867 }
2849 2868
2850 void showLayerTree(const blink::RenderObject* renderer) 2869 void showLayerTree(const blink::RenderObject* renderer)
2851 { 2870 {
2852 if (!renderer) 2871 if (!renderer)
2853 return; 2872 return;
2854 showLayerTree(renderer->enclosingLayer()); 2873 showLayerTree(renderer->enclosingLayer());
2855 } 2874 }
2856 #endif 2875 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698