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

Issue 395633011: Implement the unprefixed the Fullscreen API (Closed)

Created:
6 years, 5 months ago by philipj_slow
Modified:
6 years, 4 months ago
Reviewers:
falken, tkent
CC:
blink-reviews, arv+blink, sof, eae+blinkwatch, blink-reviews-dom_chromium.org, dglazkov+blink, Inactive, rwlbuis
Project:
blink
Visibility:
Public.

Description

Implement the unprefixed the Fullscreen API Intent to Implement and Ship: https://groups.google.com/a/chromium.org/d/msg/blink-dev/GLl6aWs9-EM/uTqxEmM4iGcJ The API is only enabled for testing, to allow the recent spec changes to be implemented with tests for the new API: http://crbug.com/402376 This does not add support for the :fullscreen pseudo-class, which is tracked by a dedicate issue: http://crbug.com/402378 BUG=383813 Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=180052

Patch Set 1 #

Total comments: 2

Patch Set 2 : rebase #

Patch Set 3 : tests #

Patch Set 4 : rebase #

Total comments: 7

Patch Set 5 : nits #

Unified diffs Side-by-side diffs Delta from patch set Stats (+395 lines, -56 lines) Patch
A LayoutTests/fullscreen/api/document-exit-fullscreen.html View 1 2 1 chunk +24 lines, -0 lines 0 comments Download
A LayoutTests/fullscreen/api/document-fullscreen-element.html View 1 2 1 chunk +34 lines, -0 lines 0 comments Download
A LayoutTests/fullscreen/api/document-fullscreen-enabled.html View 1 2 1 chunk +17 lines, -0 lines 0 comments Download
A LayoutTests/fullscreen/api/document-onfullscreenchange.html View 1 2 1 chunk +15 lines, -0 lines 0 comments Download
A LayoutTests/fullscreen/api/document-onfullscreenerror.html View 1 2 1 chunk +13 lines, -0 lines 0 comments Download
A LayoutTests/fullscreen/api/element-request-fullscreen.html View 1 2 1 chunk +22 lines, -0 lines 0 comments Download
A LayoutTests/fullscreen/full-screen-prefixed-and-unprefixed.html View 1 2 1 chunk +51 lines, -0 lines 0 comments Download
A LayoutTests/fullscreen/full-screen-prefixed-and-unprefixed-expected.txt View 1 2 1 chunk +14 lines, -0 lines 0 comments Download
A LayoutTests/fullscreen/full-screen-unprefixed-and-prefixed.html View 1 2 1 chunk +51 lines, -0 lines 0 comments Download
A LayoutTests/fullscreen/full-screen-unprefixed-and-prefixed-expected.txt View 1 2 1 chunk +14 lines, -0 lines 0 comments Download
A LayoutTests/fullscreen/trusted-event.js View 1 2 3 4 1 chunk +37 lines, -0 lines 0 comments Download
M Source/core/dom/DocumentFullscreen.h View 1 1 chunk +8 lines, -4 lines 0 comments Download
M Source/core/dom/DocumentFullscreen.cpp View 1 2 chunks +17 lines, -17 lines 0 comments Download
M Source/core/dom/DocumentFullscreen.idl View 1 1 chunk +12 lines, -4 lines 0 comments Download
M Source/core/dom/ElementFullscreen.h View 1 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/ElementFullscreen.cpp View 1 1 chunk +5 lines, -0 lines 0 comments Download
M Source/core/dom/ElementFullscreen.idl View 1 1 chunk +2 lines, -0 lines 0 comments Download
M Source/core/dom/FullscreenElementStack.h View 1 2 3 3 chunks +6 lines, -5 lines 0 comments Download
M Source/core/dom/FullscreenElementStack.cpp View 1 2 3 4 10 chunks +48 lines, -26 lines 0 comments Download
M Source/core/events/EventTypeNames.in View 1 2 1 chunk +2 lines, -0 lines 0 comments Download
M Source/platform/RuntimeEnabledFeatures.in View 1 2 3 4 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 18 (0 generated)
falken
https://codereview.chromium.org/395633011/diff/1/Source/core/dom/FullscreenElementStack.cpp File Source/core/dom/FullscreenElementStack.cpp (right): https://codereview.chromium.org/395633011/diff/1/Source/core/dom/FullscreenElementStack.cpp#newcode61 Source/core/dom/FullscreenElementStack.cpp:61: // The prefixed events bubble, the unprefixed ones do ...
6 years, 5 months ago (2014-07-17 03:45:02 UTC) #1
philipj_slow
When I started working on this, I thought that it would be rather trivial, but ...
6 years, 5 months ago (2014-07-17 09:33:02 UTC) #2
falken
On 2014/07/17 09:33:02, philipj wrote: > When I started working on this, I thought that ...
6 years, 5 months ago (2014-07-18 02:15:43 UTC) #3
philipj_slow
On 2014/07/18 02:15:43, falken wrote: > On 2014/07/17 09:33:02, philipj wrote: > > When I ...
6 years, 5 months ago (2014-07-18 07:32:21 UTC) #4
philipj_slow
rebase
6 years, 4 months ago (2014-08-08 13:11:33 UTC) #5
falken
On 2014/08/08 13:11:33, philipj wrote: > rebase Do you want me to review this now? ...
6 years, 4 months ago (2014-08-11 02:50:51 UTC) #6
philipj_slow
The spec bugs I filed resulted in a bunch of changes I'd like to implement ...
6 years, 4 months ago (2014-08-11 11:38:30 UTC) #7
philipj_slow
tests
6 years, 4 months ago (2014-08-11 15:23:08 UTC) #8
philipj_slow
OK, I'm ready for review now. I've updated the description to clarify the scope of ...
6 years, 4 months ago (2014-08-11 15:28:54 UTC) #9
philipj_slow
rebase
6 years, 4 months ago (2014-08-11 15:39:02 UTC) #10
falken
lgtm with some comments/nits On 2014/08/11 11:38:30, philipj wrote: > Since I'm going to miss ...
6 years, 4 months ago (2014-08-12 03:26:08 UTC) #11
philipj_slow
https://codereview.chromium.org/395633011/diff/60001/LayoutTests/fullscreen/api/document-exit-fullscreen.html File LayoutTests/fullscreen/api/document-exit-fullscreen.html (right): https://codereview.chromium.org/395633011/diff/60001/LayoutTests/fullscreen/api/document-exit-fullscreen.html#newcode6 LayoutTests/fullscreen/api/document-exit-fullscreen.html:6: <div id="log"></div> On 2014/08/12 03:26:08, falken wrote: > The ...
6 years, 4 months ago (2014-08-12 08:09:53 UTC) #12
philipj_slow
nits
6 years, 4 months ago (2014-08-12 08:10:35 UTC) #13
philipj_slow
tkent, can you please review Source/platform?
6 years, 4 months ago (2014-08-12 08:14:05 UTC) #14
tkent
lgtm
6 years, 4 months ago (2014-08-12 08:32:11 UTC) #15
philipj_slow
The CQ bit was checked by philipj@opera.com
6 years, 4 months ago (2014-08-12 08:40:09 UTC) #16
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/philipj@opera.com/395633011/80001
6 years, 4 months ago (2014-08-12 08:41:21 UTC) #17
commit-bot: I haz the power
6 years, 4 months ago (2014-08-12 09:32:12 UTC) #18
Message was sent while issue was closed.
Change committed as 180052

Powered by Google App Engine
This is Rietveld 408576698