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

Side by Side Diff: LayoutTests/fullscreen/model/remove-first.html

Issue 476433002: Sync fullscreen element removal with the spec (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <title>Remove the first element on the fullscreen element stack</title>
3 <script src="../../resources/testharness.js"></script>
4 <script src="../../resources/testharnessreport.js"></script>
5 <script src="../trusted-event.js"></script>
6 <div id="log"></div>
7 <div id="first">
8 <div id="last"></div>
9 </div>
10 <script>
11 async_test(function(t)
12 {
13 var first = document.getElementById("first");
14 trusted_request(first);
15 document.onfullscreenchange = t.step_func(function()
16 {
17 assert_equals(document.fullscreenElement, first);
18 var last = document.getElementById("last");
19 trusted_request(last);
20 document.onfullscreenchange = t.step_func(function()
21 {
22 assert_equals(document.fullscreenElement, last);
23 first.remove();
24 document.onfullscreenchange = t.step_func(function()
25 {
26 assert_equals(document.fullscreenElement, null);
27 t.done();
28 });
29 });
30 });
31 });
falken 2014/08/14 04:12:47 Totally just an idea, but you might consider using
philipj_slow 2014/08/14 08:16:29 That looks really nice! Unfortunately, I've been r
32 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fullscreen/model/remove-last.html » ('j') | Source/core/dom/FullscreenElementStack.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698