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

Issue 13959008: Remove NonCompositedContentHost (Closed)

Created:
7 years, 8 months ago by trchen
Modified:
7 years, 7 months ago
CC:
blink-reviews, jchaffraix+rendering, blink-layers_chromium.org, danakj, alokp, wjmaclean
Visibility:
Public.

Description

Remove NonCompositedContentHost Safari uses a hybrid scrolling approach. For contents that require compositing, they will create compositing layers and will use layer-based scrolling. For non-composited contents, they will be painted to a native window and will be scrolled with a OS-provided backing. Chromium doesn't use this native window based scrolling. Instead, NonCompositedContentHost was introduced to provide a replacement for the OS-provided backing. Now we no longer need to maintain compatibility with the native window approach. This patch removes RenderLayerBacking::paintsIntoWindow(). Main frame contents will be painted onto its RenderView layer (which was always created but only used as container for child layer), and NonCompositedContentHost becomes redundant which gets removed too. R=jamesr@chromium.org Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=150733

Patch Set 1 #

Patch Set 2 : Fix RTL issue #

Patch Set 3 : Adding back LCD text workaround #

Total comments: 5

Patch Set 4 : fix random bugs. rebaseline tests. #

Patch Set 5 : rebase. add setBackgroundColor to setIsAcceleratedCompositingActive #

Total comments: 2

Patch Set 6 : rebase again #

Patch Set 7 : adding back drawCheckerboardForMissingTiles flag, delete unused setUseLCDText #

Patch Set 8 : rebase again #

Patch Set 9 : rebase again, adding 2 more tests #

Patch Set 10 : one more #

Unified diffs Side-by-side diffs Delta from patch set Stats (+355 lines, -448 lines) Patch
M LayoutTests/NeverFixTests View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/absolute-inside-out-of-view-fixed-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/bounds-in-flipped-writing-mode-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/clip-child-by-non-stacking-ancestor-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/columns/composited-in-paginated-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/contents-opaque/background-clip-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/contents-opaque/background-color-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/contents-opaque/filter-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/contents-opaque/layer-opacity-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/contents-opaque/layer-transform-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/filters/sw-layer-overlaps-hw-shadow-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/filters/sw-nested-shadow-overlaps-hw-nested-shadow-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/filters/sw-shadow-overlaps-hw-layer-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/filters/sw-shadow-overlaps-hw-shadow-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/force-compositing-mode/force-composite-empty-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/force-compositing-mode/no-overflow-iframe-layer-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/force-compositing-mode/overflow-hidden-iframe-layer-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/force-compositing-mode/overflow-iframe-enter-compositing-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/force-compositing-mode/overflow-iframe-layer-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/force-compositing-mode/overflow-iframe-leave-compositing-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/geometry/ancestor-overflow-change-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/geometry/bounds-clipped-composited-child-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/geometry/bounds-ignores-hidden-dynamic-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/geometry/bounds-ignores-hidden-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/geometry/clip-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/geometry/clip-inside-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/geometry/fixed-position-composited-switch-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/geometry/flipped-writing-mode-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/geometry/foreground-layer-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/geometry/layer-due-to-layer-children-switch-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/geometry/limit-layer-bounds-clipping-ancestor-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/geometry/limit-layer-bounds-fixed-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/geometry/limit-layer-bounds-fixed-positioned-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/geometry/limit-layer-bounds-opacity-transition-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/geometry/limit-layer-bounds-positioned-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/geometry/limit-layer-bounds-positioned-transition-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/geometry/limit-layer-bounds-transformed-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/geometry/limit-layer-bounds-transformed-overflow-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/iframes/become-composited-nested-iframes-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/iframes/become-overlapped-iframe-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/iframes/composited-parent-iframe-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/iframes/connect-compositing-iframe-delayed-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/iframes/connect-compositing-iframe-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/iframes/connect-compositing-iframe2-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/iframes/connect-compositing-iframe3-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/iframes/enter-compositing-iframe-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/iframes/iframe-resize-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/iframes/iframe-size-from-zero-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/iframes/invisible-nested-iframe-hide-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/iframes/overlapped-iframe-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/iframes/overlapped-iframe-iframe-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/iframes/overlapped-nested-iframes-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/iframes/resizer-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/images/clip-on-directly-composited-image-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/animation-overlap-with-children-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/fixed-position-and-transform-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/fixed-position-change-out-of-view-in-view-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/fixed-position-nonscrollable-body-mismatch-containers-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/fixed-position-nonscrollable-body-overlap-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/fixed-position-nonscrollable-iframes-in-scrollable-page-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/fixed-position-out-of-view-scaled-expected.txt View 1 2 3 3 chunks +3 lines, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/fixed-position-out-of-view-scaled-scroll-expected.txt View 1 2 3 3 chunks +3 lines, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/fixed-position-under-transform-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/no-compositing-for-fixed-position-under-transform-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/overflow-scroll-overlap-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/overlap-animation-clipping-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/overlap-animation-container-expected.txt View 1 2 3 2 chunks +2 lines, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/overlap-animation-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/overlap-child-layer-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/overlap-clipping-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/overlap-transformed-3d-expected.txt View 1 2 3 2 chunks +2 lines, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/overlap-transformed-and-clipped-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/overlap-transformed-layer-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/overlap-transformed-preserved-3d-expected.txt View 1 2 3 2 chunks +2 lines, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/overlap-transforms-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/rotate3d-overlap-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/scroll-partial-update-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/spanOverlapsCanvas-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/stacking-context-overlap-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/stacking-context-overlap-nested-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/layer-creation/translatez-overlap-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/masks/mask-layer-size-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/overflow-trumps-transform-style-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/overflow/clip-descendents-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/overflow/composited-scrolling-creates-a-stacking-container-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/overflow/composited-scrolling-paint-phases-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/overflow/content-gains-scrollbars-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/overflow/content-loses-scrollbars-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/overflow/overflow-scrollbar-layers-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/overflow/resize-painting-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/overflow/scrolling-content-clip-to-viewport-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/overflow/scrolling-without-painting-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/overflow/textarea-scroll-touch-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/overflow/updating-scrolling-content-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/repaint/resize-repaint-expected.txt View 1 2 3 1 chunk +5 lines, -4 lines 0 comments Download
M LayoutTests/compositing/rtl/rtl-absolute-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rtl/rtl-absolute-overflow-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rtl/rtl-absolute-overflow-scrolled-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rtl/rtl-fixed-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rtl/rtl-fixed-overflow-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rtl/rtl-fixed-overflow-scrolled-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rtl/rtl-iframe-absolute-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rtl/rtl-iframe-absolute-overflow-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rtl/rtl-iframe-absolute-overflow-scrolled-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rtl/rtl-iframe-fixed-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rtl/rtl-iframe-fixed-overflow-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rtl/rtl-iframe-fixed-overflow-scrolled-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rtl/rtl-iframe-relative-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rtl/rtl-relative-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rubberbanding/transform-overhang-e.html View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rubberbanding/transform-overhang-n.html View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rubberbanding/transform-overhang-ne.html View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rubberbanding/transform-overhang-nw.html View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rubberbanding/transform-overhang-s.html View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rubberbanding/transform-overhang-se.html View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rubberbanding/transform-overhang-sw.html View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/rubberbanding/transform-overhang-w.html View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/tiling/backface-preserve-3d-tiled-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/tiling/rotated-tiled-clamped-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/tiling/rotated-tiled-preserve3d-clamped-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/tiling/tiled-layer-resize-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/transitions/transitions-have-composited-layers-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/visibility/layer-visible-content-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/compositing/visibility/visibility-image-layers-dynamic-expected.txt View 1 2 3 3 chunks +7 lines, -4 lines 0 comments Download
M LayoutTests/css3/filters/composited-layer-bounds-after-sw-blur-animation-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/css3/filters/composited-layer-bounds-with-composited-blur-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/css3/filters/composited-layer-child-bounds-after-composited-to-sw-shadow-change-expected.txt View 1 2 3 2 chunks +2 lines, -0 lines 0 comments Download
M LayoutTests/css3/filters/composited-layer-promotion-after-outset-overlap-change-using-composited-shadow-expected.txt View 1 2 3 2 chunks +2 lines, -0 lines 0 comments Download
M LayoutTests/css3/filters/composited-layer-promotion-after-outset-overlap-change-using-sw-shadow-expected.txt View 1 2 3 2 chunks +2 lines, -0 lines 0 comments Download
M LayoutTests/css3/filters/filtered-compositing-descendant-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-linux/compositing/overflow/scrolling-without-painting-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-linux/compositing/overflow/updating-scrolling-content-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-linux/virtual/gpu/compositedscrolling/overflow/scrolling-content-clip-to-viewport-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-linux/virtual/gpu/compositedscrolling/overflow/scrolling-without-painting-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-linux/virtual/gpu/compositedscrolling/overflow/updating-scrolling-content-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-linux/virtual/softwarecompositing/overflow/scrolling-content-clip-to-viewport-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-linux/virtual/softwarecompositing/overflow/scrolling-without-painting-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-linux/virtual/softwarecompositing/overflow/updating-scrolling-content-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-linux/virtual/softwarecompositing/rtl/rtl-fixed-overflow-scrolled-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-linux/virtual/softwarecompositing/rtl/rtl-iframe-absolute-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-linux/virtual/softwarecompositing/rtl/rtl-iframe-fixed-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-linux/virtual/softwarecompositing/rtl/rtl-iframe-relative-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/backing/no-backing-for-clip-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/backing/no-backing-for-clip-overlap-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/backing/no-backing-for-perspective-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/geometry/bounds-ignores-hidden-composited-descendant-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/geometry/bounds-ignores-hidden-dynamic-negzindex-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/geometry/composited-in-columns-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/geometry/layer-due-to-layer-children-deep-switch-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/geometry/limit-layer-bounds-overflow-root-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/geometry/preserve-3d-switching-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/iframes/invisible-nested-iframe-show-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/layer-creation/no-compositing-for-preserve-3d-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/overflow/textarea-scroll-touch-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/repaint/invalidations-on-composited-layers-expected.txt View 1 2 3 1 chunk +6 lines, -5 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/tiling/crash-reparent-tiled-layer-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/tiling/huge-layer-add-remove-child-expected.txt View 1 2 3 3 chunks +3 lines, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/tiling/huge-layer-img-expected.txt View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/tiling/huge-layer-with-layer-children-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/tiling/huge-layer-with-layer-children-resize-expected.txt View 1 2 3 3 chunks +3 lines, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/tiling/tile-cache-zoomed-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/compositing/visibility/visibility-image-layers-dynamic-expected.txt View 1 2 3 3 chunks +7 lines, -4 lines 0 comments Download
M LayoutTests/platform/chromium-mac/css3/filters/composited-during-animation-layertree-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/css3/filters/composited-during-transition-layertree-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/backing/no-backing-for-clip-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/backing/no-backing-for-clip-overlap-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/backing/no-backing-for-perspective-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/geometry/bounds-ignores-hidden-composited-descendant-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/geometry/bounds-ignores-hidden-dynamic-negzindex-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/geometry/composited-in-columns-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/geometry/layer-due-to-layer-children-deep-switch-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/geometry/limit-layer-bounds-overflow-root-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/geometry/preserve-3d-switching-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/iframes/invisible-nested-iframe-show-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/layer-creation/no-compositing-for-preserve-3d-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/layer-creation/scroll-partial-update-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/repaint/invalidations-on-composited-layers-expected.txt View 1 2 3 1 chunk +6 lines, -5 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/rtl/rtl-fixed-overflow-scrolled-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/rtl/rtl-iframe-absolute-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/rtl/rtl-iframe-fixed-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/rtl/rtl-iframe-relative-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/tiling/crash-reparent-tiled-layer-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/tiling/huge-layer-add-remove-child-expected.txt View 1 2 3 3 chunks +3 lines, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/tiling/huge-layer-img-expected.txt View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/tiling/huge-layer-with-layer-children-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/tiling/huge-layer-with-layer-children-resize-expected.txt View 1 2 3 3 chunks +3 lines, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/tiling/tile-cache-zoomed-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/softwarecompositing/visibility/visibility-image-layers-dynamic-expected.txt View 1 2 3 3 chunks +7 lines, -4 lines 0 comments Download
M LayoutTests/platform/chromium-mac/virtual/threaded/compositing/visibility/visibility-image-layers-dynamic-expected.txt View 1 2 3 3 chunks +7 lines, -4 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/backing/no-backing-for-clip-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/backing/no-backing-for-clip-overlap-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/backing/no-backing-for-perspective-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/geometry/bounds-ignores-hidden-composited-descendant-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/geometry/bounds-ignores-hidden-dynamic-negzindex-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/geometry/composited-in-columns-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/geometry/layer-due-to-layer-children-deep-switch-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/geometry/layer-due-to-layer-children-switch-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/geometry/limit-layer-bounds-overflow-root-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/geometry/preserve-3d-switching-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/iframes/invisible-nested-iframe-show-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/layer-creation/no-compositing-for-preserve-3d-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/repaint/invalidations-on-composited-layers-expected.txt View 1 2 3 1 chunk +6 lines, -5 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/tiling/crash-reparent-tiled-layer-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/tiling/huge-layer-add-remove-child-expected.txt View 1 2 3 3 chunks +3 lines, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/tiling/huge-layer-img-expected.txt View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/tiling/huge-layer-with-layer-children-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/tiling/huge-layer-with-layer-children-resize-expected.txt View 1 2 3 3 chunks +3 lines, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/compositing/tiling/tile-cache-zoomed-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/css3/filters/composited-during-animation-layertree-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/css3/filters/composited-during-transition-layertree-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/virtual/softwarecompositing/geometry/composited-in-columns-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/virtual/softwarecompositing/iframes/invisible-nested-iframe-show-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/virtual/softwarecompositing/tiling/huge-layer-img-expected.txt View 1 2 3 4 5 6 7 8 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/platform/chromium-win/virtual/softwarecompositing/tiling/tile-cache-zoomed-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
A + LayoutTests/virtual/deferred/fast/images/repaint-subrect-grid-expected.txt View 1 2 3 0 chunks +-1 lines, --1 lines 0 comments Download
M LayoutTests/virtual/gpu/compositedscrolling/overflow/composited-scrolling-creates-a-stacking-container-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/gpu/compositedscrolling/overflow/composited-scrolling-paint-phases-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/gpu/compositedscrolling/overflow/content-gains-scrollbars-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/gpu/compositedscrolling/overflow/overflow-auto-with-touch-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/gpu/compositedscrolling/overflow/overflow-auto-with-touch-toggle-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/gpu/compositedscrolling/overflow/overflow-overlay-with-touch-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/gpu/compositedscrolling/overflow/overflow-scrollbar-layers-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/gpu/compositedscrolling/overflow/resize-painting-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/gpu/compositedscrolling/overflow/scrolling-without-painting-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/gpu/compositedscrolling/overflow/updating-scrolling-content-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/geometry/limit-layer-bounds-fixed-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/geometry/limit-layer-bounds-transformed-overflow-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/iframes/become-overlapped-iframe-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/iframes/composited-parent-iframe-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/iframes/connect-compositing-iframe-delayed-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/iframes/connect-compositing-iframe-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/iframes/connect-compositing-iframe2-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/iframes/connect-compositing-iframe3-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/iframes/enter-compositing-iframe-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/iframes/iframe-resize-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/iframes/iframe-size-from-zero-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/iframes/overlapped-iframe-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/iframes/resizer-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/layer-creation/animation-overlap-with-children-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/layer-creation/fixed-position-out-of-view-scaled-expected.txt View 1 2 3 3 chunks +3 lines, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/layer-creation/fixed-position-out-of-view-scaled-scroll-expected.txt View 1 2 3 3 chunks +3 lines, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/overflow/composited-scrolling-creates-a-stacking-container-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/overflow/composited-scrolling-paint-phases-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/overflow/content-gains-scrollbars-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/overflow/overflow-scrollbar-layers-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/overflow/resize-painting-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/overflow/scrolling-without-painting-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/overflow/updating-scrolling-content-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/rtl/rtl-iframe-absolute-overflow-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/rtl/rtl-iframe-absolute-overflow-scrolled-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/rtl/rtl-iframe-fixed-overflow-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M LayoutTests/virtual/softwarecompositing/rtl/rtl-iframe-fixed-overflow-scrolled-expected.txt View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
M Source/WebKit/chromium/WebKit.gyp View 1 2 3 1 chunk +0 lines, -2 lines 0 comments Download
M Source/WebKit/chromium/src/LinkHighlight.h View 1 2 3 1 chunk +0 lines, -1 line 0 comments Download
M Source/WebKit/chromium/src/LinkHighlight.cpp View 1 2 3 4 4 chunks +13 lines, -24 lines 0 comments Download
D Source/WebKit/chromium/src/NonCompositedContentHost.h View 1 2 3 1 chunk +0 lines, -89 lines 0 comments Download
D Source/WebKit/chromium/src/NonCompositedContentHost.cpp View 1 2 3 1 chunk +0 lines, -165 lines 0 comments Download
M Source/WebKit/chromium/src/WebViewImpl.h View 1 2 3 4 5 6 7 3 chunks +0 lines, -5 lines 0 comments Download
M Source/WebKit/chromium/src/WebViewImpl.cpp View 1 2 3 4 5 6 7 11 chunks +5 lines, -60 lines 0 comments Download
M Source/core/rendering/RenderLayer.cpp View 1 2 3 4 5 6 7 8 5 chunks +6 lines, -20 lines 0 comments Download
M Source/core/rendering/RenderLayerBacking.h View 1 2 3 1 chunk +0 lines, -8 lines 0 comments Download
M Source/core/rendering/RenderLayerBacking.cpp View 1 2 3 4 5 6 5 chunks +8 lines, -13 lines 0 comments Download
M Source/core/rendering/RenderLayerCompositor.h View 1 2 3 4 5 6 7 1 chunk +0 lines, -2 lines 0 comments Download
M Source/core/rendering/RenderLayerCompositor.cpp View 1 2 3 4 5 6 7 5 chunks +1 line, -15 lines 0 comments Download
M Source/core/rendering/RenderObject.cpp View 1 2 3 4 5 6 7 8 1 chunk +1 line, -1 line 0 comments Download
M Source/core/rendering/RenderView.cpp View 1 2 3 4 5 6 7 1 chunk +2 lines, -4 lines 0 comments Download
M public/platform/WebContentLayer.h View 1 2 3 4 5 6 7 1 chunk +0 lines, -5 lines 0 comments Download

Messages

Total messages: 35 (0 generated)
trchen
Hey James, I think it is not too difficult to remove NonCompositedContentHost. So far I ...
7 years, 8 months ago (2013-04-23 04:08:10 UTC) #1
jamesr
Interesting. Here are a few things that NonCompositedContentHost knows how to do that (afaik) RenderLayerCompositor ...
7 years, 8 months ago (2013-04-23 06:11:50 UTC) #2
trchen
On 2013/04/23 06:11:50, jamesr wrote: > Interesting. Here are a few things that NonCompositedContentHost knows ...
7 years, 8 months ago (2013-04-23 21:13:01 UTC) #3
trchen
As discussed with jamesr@ offline, we need to enable LCD text for main frame explicitly ...
7 years, 8 months ago (2013-04-23 22:05:57 UTC) #4
jamesr
I'm not sure I follow the LinkHighlight changes. Other than that, this looks great. https://codereview.chromium.org/13959008/diff/6002/Source/core/rendering/RenderLayerBacking.cpp ...
7 years, 8 months ago (2013-04-24 03:16:35 UTC) #5
trchen
On 2013/04/24 03:16:35, jamesr wrote: > I'm not sure I follow the LinkHighlight changes. Other ...
7 years, 8 months ago (2013-04-24 03:30:08 UTC) #6
enne (OOO)
https://codereview.chromium.org/13959008/diff/6002/Source/core/rendering/RenderLayerBacking.cpp File Source/core/rendering/RenderLayerBacking.cpp (right): https://codereview.chromium.org/13959008/diff/6002/Source/core/rendering/RenderLayerBacking.cpp#newcode207 Source/core/rendering/RenderLayerBacking.cpp:207: // FIXME: Remove LCD text setting after it is ...
7 years, 8 months ago (2013-04-24 14:00:24 UTC) #7
trchen
https://codereview.chromium.org/13959008/diff/6002/Source/core/rendering/RenderLayerBacking.cpp File Source/core/rendering/RenderLayerBacking.cpp (left): https://codereview.chromium.org/13959008/diff/6002/Source/core/rendering/RenderLayerBacking.cpp#oldcode197 Source/core/rendering/RenderLayerBacking.cpp:197: m_graphicsLayer->setContentsOpaque(true); Here, look at me. https://codereview.chromium.org/13959008/diff/6002/Source/core/rendering/RenderLayerBacking.cpp File Source/core/rendering/RenderLayerBacking.cpp (right): ...
7 years, 8 months ago (2013-04-24 21:16:51 UTC) #8
enne (OOO)
On 2013/04/24 21:16:51, trchen wrote: > Yes see my comments above. Is it the sufficient ...
7 years, 8 months ago (2013-04-24 22:46:53 UTC) #9
aelias_OOO_until_Jul13
https://codereview.chromium.org/13959008/diff/6002/Source/WebKit/chromium/src/WebViewImpl.cpp File Source/WebKit/chromium/src/WebViewImpl.cpp (right): https://codereview.chromium.org/13959008/diff/6002/Source/WebKit/chromium/src/WebViewImpl.cpp#newcode4060 Source/WebKit/chromium/src/WebViewImpl.cpp:4060: void WebViewImpl::updateLayerTreeViewport() Looks like this method isn't needed anymore. ...
7 years, 8 months ago (2013-04-24 22:49:45 UTC) #10
enne (OOO)
Ping. Are you still planning to land this? I see other folks making changes to ...
7 years, 7 months ago (2013-05-09 22:22:06 UTC) #11
trchen
On 2013/05/09 22:22:06, enne wrote: > Ping. Are you still planning to land this? I ...
7 years, 7 months ago (2013-05-09 22:24:54 UTC) #12
Ian Vollick
On 2013/05/09 22:24:54, trchen wrote: > On 2013/05/09 22:22:06, enne wrote: > > Ping. Are ...
7 years, 7 months ago (2013-05-10 15:10:38 UTC) #13
trchen
Hello reviewers, I rebased the patch to the latest tree and rebaselined all affected tests. ...
7 years, 7 months ago (2013-05-15 04:42:47 UTC) #14
aelias_OOO_until_Jul13
On 2013/05/15 04:42:47, trchen wrote: > 3. The previous patch forgot to set background color ...
7 years, 7 months ago (2013-05-15 08:18:28 UTC) #15
trchen
On 2013/05/15 08:18:28, aelias wrote: > On 2013/05/15 04:42:47, trchen wrote: > > 3. The ...
7 years, 7 months ago (2013-05-15 15:27:02 UTC) #16
danakj
On Wed, May 15, 2013 at 11:27 AM, <trchen@chromium.org> wrote: > On 2013/05/15 08:18:28, aelias ...
7 years, 7 months ago (2013-05-15 16:03:46 UTC) #17
trchen
On 2013/05/15 16:03:46, danakj wrote: > On Wed, May 15, 2013 at 11:27 AM, <mailto:trchen@chromium.org> ...
7 years, 7 months ago (2013-05-16 04:44:43 UTC) #18
trchen
PTAL. :) I added setBackgroundColor to setIsAcceleratedCompositingActive. IMO it makes more sense than enterForceCompositingMode. On ...
7 years, 7 months ago (2013-05-16 04:52:33 UTC) #19
enne (OOO)
https://codereview.chromium.org/13959008/diff/33001/Source/WebKit/chromium/src/WebViewImpl.cpp File Source/WebKit/chromium/src/WebViewImpl.cpp (right): https://codereview.chromium.org/13959008/diff/33001/Source/WebKit/chromium/src/WebViewImpl.cpp#newcode3974 Source/WebKit/chromium/src/WebViewImpl.cpp:3974: m_layerTreeView->setBackgroundColor(backgroundColor()); If layout() doesn't get called with the single ...
7 years, 7 months ago (2013-05-16 18:08:12 UTC) #20
danakj
https://codereview.chromium.org/13959008/diff/33001/Source/WebKit/chromium/src/WebViewImpl.cpp File Source/WebKit/chromium/src/WebViewImpl.cpp (right): https://codereview.chromium.org/13959008/diff/33001/Source/WebKit/chromium/src/WebViewImpl.cpp#newcode3974 Source/WebKit/chromium/src/WebViewImpl.cpp:3974: m_layerTreeView->setBackgroundColor(backgroundColor()); On 2013/05/16 18:08:12, enne wrote: > If layout() ...
7 years, 7 months ago (2013-05-16 18:09:44 UTC) #21
enne (OOO)
Ok, thanks for the explanation. My only remaining question is that I don't understand what's ...
7 years, 7 months ago (2013-05-16 20:48:43 UTC) #22
trchen
On 2013/05/16 20:48:43, enne wrote: > Ok, thanks for the explanation. > > My only ...
7 years, 7 months ago (2013-05-16 21:23:16 UTC) #23
enne (OOO)
Oh, layout tests. :( Thanks for the explanation. This patch lgtm (again).
7 years, 7 months ago (2013-05-16 21:26:04 UTC) #24
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/trchen@chromium.org/13959008/45001
7 years, 7 months ago (2013-05-17 21:53:40 UTC) #25
commit-bot: I haz the power
Failed to apply patch for Source/Platform/chromium/public/WebContentLayer.h: While running patch -p1 --forward --force --no-backup-if-mismatch; patching file ...
7 years, 7 months ago (2013-05-17 21:54:50 UTC) #26
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/trchen@chromium.org/13959008/50001
7 years, 7 months ago (2013-05-17 22:12:59 UTC) #27
commit-bot: I haz the power
Retried try job too often on blink_presubmit for step(s) presubmit http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=blink_presubmit&number=65
7 years, 7 months ago (2013-05-17 22:39:47 UTC) #28
jamesr
lgtm
7 years, 7 months ago (2013-05-17 23:14:03 UTC) #29
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/trchen@chromium.org/13959008/50001
7 years, 7 months ago (2013-05-17 23:16:28 UTC) #30
commit-bot: I haz the power
Retried try job too often on linux_layout_rel for step(s) webkit_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=linux_layout_rel&number=8619
7 years, 7 months ago (2013-05-18 00:15:39 UTC) #31
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/trchen@chromium.org/13959008/72001
7 years, 7 months ago (2013-05-20 22:36:27 UTC) #32
commit-bot: I haz the power
Retried try job too often on linux_layout_rel for step(s) webkit_tests http://build.chromium.org/p/tryserver.chromium/buildstatus?builder=linux_layout_rel&number=8858
7 years, 7 months ago (2013-05-20 23:43:18 UTC) #33
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/trchen@chromium.org/13959008/83001
7 years, 7 months ago (2013-05-21 00:55:30 UTC) #34
commit-bot: I haz the power
7 years, 7 months ago (2013-05-21 01:53:53 UTC) #35
Message was sent while issue was closed.
Change committed as 150733

Powered by Google App Engine
This is Rietveld 408576698