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

Issue 1410833004: Revert "Implement FullScreen using top layer." (Closed)

Created:
5 years, 2 months ago by dsinclair
Modified:
5 years, 2 months ago
Reviewers:
esprehn, philipj_slow
CC:
darktears, apavlov+blink_chromium.org, blink-reviews, blink-reviews-css, blink-reviews-dom_chromium.org, blink-reviews-layout_chromium.org, blink-reviews-style_chromium.org, chromium-reviews, dcheng, dglazkov+blink, eae+blinkwatch, jchaffraix+rendering, leviw+renderwatch, pdr+renderingwatchlist_chromium.org, rwlbuis, sof, szager+layoutwatch_chromium.org, zoltan1
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Revert "Implement FullScreen using top layer." Reason for revert: Causes several issues when going into/out of fullscreen. Implement FullScreen using top layer. This CL is based off of https://codereview.chromium.org/788073004 by jchaffraix@. Replace RenderFullscreen with top layer - Take II This patch is strongly inspired by https://codereview.chromium.org/134753003/ but is a complete rewrite of the change to: - understand why every bits was needed (some were not). - better document the differences we have with the specification so that we can track and fix them. The issue with re-attaching plugins went away due to https://codereview.chromium.org/23618022, which moved the plugin's lifecycle to the DOM. The tests' changes are because fullscreen doesn't center by default anymore but stretches the element to the viewport's size. Some tests were also not accounting for the backdrop and where thus modified. That change didn't land due to plugin persistence issues. Those issues should now be resolved and plugins should survive over reattach. BUG=240576, 246077, 398599, 543946, 543954, 544175 ORIGINAL_CL=https://codereview.chromium.org/1139033006/ Review URL: https://codereview.chromium.org/1363023005 Cr-Commit-Position: refs/heads/master@{#353782} Committed: https://crrev.com/2460a95281959d1b4dd941fed10998adf8dcb63c Cr-Commit-Position: refs/heads/master@{#355313}

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : #

Unified diffs Side-by-side diffs Delta from patch set Stats (+509 lines, -346 lines) Patch
M third_party/WebKit/LayoutTests/SlowTests View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/TestExpectations View 1 2 1 chunk +3 lines, -0 lines 0 comments Download
M third_party/WebKit/LayoutTests/fast/css/invalidation/fullscreen.html View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/fast/css/invalidation/fullscreen-expected.txt View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/fullscreen/enter-exit-full-screen-hover.html View 2 chunks +1 line, -9 lines 0 comments Download
M third_party/WebKit/LayoutTests/fullscreen/full-screen-iframe-zIndex-expected.html View 1 chunk +0 lines, -1 line 0 comments Download
D third_party/WebKit/LayoutTests/fullscreen/full-screen-is-in-top-layer.html View 1 chunk +0 lines, -37 lines 0 comments Download
D third_party/WebKit/LayoutTests/fullscreen/full-screen-is-in-top-layer-expected.html View 1 chunk +0 lines, -9 lines 0 comments Download
M third_party/WebKit/LayoutTests/fullscreen/full-screen-render-inline-expected.html View 1 chunk +2 lines, -1 line 0 comments Download
M third_party/WebKit/LayoutTests/fullscreen/full-screen-stacking-context.html View 1 chunk +56 lines, -51 lines 0 comments Download
M third_party/WebKit/LayoutTests/fullscreen/full-screen-stacking-context-expected.html View 1 chunk +8 lines, -16 lines 0 comments Download
D third_party/WebKit/LayoutTests/fullscreen/full-screen-video-has-backdrop.html View 1 chunk +0 lines, -44 lines 0 comments Download
D third_party/WebKit/LayoutTests/fullscreen/full-screen-video-has-backdrop-expected.html View 1 chunk +0 lines, -15 lines 0 comments Download
M third_party/WebKit/LayoutTests/fullscreen/full-screen-zIndex-expected.html View 1 chunk +6 lines, -5 lines 0 comments Download
M third_party/WebKit/LayoutTests/fullscreen/parent-flow-inline-with-block-child-expected.html View 1 chunk +2 lines, -2 lines 0 comments Download
M third_party/WebKit/LayoutTests/fullscreen/resources/empty.html View 1 chunk +1 line, -7 lines 0 comments Download
M third_party/WebKit/LayoutTests/fullscreen/video-webkit-transform-expected.html View 1 chunk +0 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/core.gypi View 1 1 chunk +2 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/css/fullscreen.css View 1 chunk +46 lines, -26 lines 0 comments Download
M third_party/WebKit/Source/core/css/resolver/StyleAdjuster.cpp View 3 chunks +0 lines, -14 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Document.cpp View 1 1 chunk +3 lines, -6 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Fullscreen.h View 4 chunks +6 lines, -5 lines 0 comments Download
M third_party/WebKit/Source/core/dom/Fullscreen.cpp View 8 chunks +47 lines, -13 lines 0 comments Download
M third_party/WebKit/Source/core/dom/LayoutTreeBuilder.cpp View 2 chunks +7 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutBlock.cpp View 1 1 chunk +5 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutBox.h View 1 2 chunks +4 lines, -4 lines 0 comments Download
A + third_party/WebKit/Source/core/layout/LayoutFullScreen.h View 2 chunks +27 lines, -20 lines 0 comments Download
A third_party/WebKit/Source/core/layout/LayoutFullScreen.cpp View 1 chunk +203 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutInline.cpp View 2 chunks +12 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutMenuList.cpp View 1 chunk +1 line, -1 line 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutObject.h View 1 3 chunks +7 lines, -1 line 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutObject.cpp View 1 1 chunk +3 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutVideo.h View 1 chunk +5 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/core/layout/LayoutVideo.cpp View 2 chunks +42 lines, -0 lines 0 comments Download
M third_party/WebKit/Source/web/FullscreenController.h View 1 chunk +1 line, -0 lines 0 comments Download
M third_party/WebKit/Source/web/FullscreenController.cpp View 3 chunks +3 lines, -17 lines 0 comments Download
M third_party/WebKit/Source/web/tests/WebFrameTest.cpp View 1 4 chunks +3 lines, -38 lines 0 comments Download

Messages

Total messages: 26 (10 generated)
dsinclair
PTAL.
5 years, 2 months ago (2015-10-19 19:02:56 UTC) #2
esprehn
On 2015/10/19 at 19:02:56, dsinclair wrote: > PTAL. Where's the bug that tracks the reason ...
5 years, 2 months ago (2015-10-19 19:46:09 UTC) #3
dsinclair
On 2015/10/19 19:46:09, esprehn wrote: > On 2015/10/19 at 19:02:56, dsinclair wrote: > > PTAL. ...
5 years, 2 months ago (2015-10-19 19:46:59 UTC) #4
esprehn
lgtm
5 years, 2 months ago (2015-10-19 20:51:45 UTC) #5
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1410833004/1 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1410833004/1
5 years, 2 months ago (2015-10-19 20:53:29 UTC) #7
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/122633)
5 years, 2 months ago (2015-10-19 22:16:08 UTC) #9
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1410833004/1 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1410833004/1
5 years, 2 months ago (2015-10-20 13:24:18 UTC) #11
commit-bot: I haz the power
Try jobs failed on following builders: win_chromium_rel_ng on tryserver.chromium.win (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.win/builders/win_chromium_rel_ng/builds/123030)
5 years, 2 months ago (2015-10-20 14:51:15 UTC) #13
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1410833004/1 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1410833004/1
5 years, 2 months ago (2015-10-20 18:38:07 UTC) #15
commit-bot: I haz the power
Try jobs failed on following builders: linux_chromium_rel_ng on tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/linux_chromium_rel_ng/builds/129057)
5 years, 2 months ago (2015-10-20 19:58:40 UTC) #17
dsinclair
I'm not sure why this test would be timing out when I'm reverting. As far ...
5 years, 2 months ago (2015-10-20 20:01:08 UTC) #19
philipj_slow
On 2015/10/20 20:01:08, dsinclair wrote: > I'm not sure why this test would be timing ...
5 years, 2 months ago (2015-10-21 10:36:13 UTC) #20
dsinclair
On 2015/10/21 10:36:13, philipj wrote: > On 2015/10/20 20:01:08, dsinclair wrote: > > I'm not ...
5 years, 2 months ago (2015-10-21 13:56:45 UTC) #21
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1410833004/40001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1410833004/40001
5 years, 2 months ago (2015-10-21 16:39:45 UTC) #24
commit-bot: I haz the power
Committed patchset #3 (id:40001)
5 years, 2 months ago (2015-10-21 16:51:54 UTC) #25
commit-bot: I haz the power
5 years, 2 months ago (2015-10-21 16:52:59 UTC) #26
Message was sent while issue was closed.
Patchset 3 (id:??) landed as
https://crrev.com/2460a95281959d1b4dd941fed10998adf8dcb63c
Cr-Commit-Position: refs/heads/master@{#355313}

Powered by Google App Engine
This is Rietveld 408576698