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

Side by Side Diff: LayoutTests/fullscreen/full-screen-inline-split-crash.html

Issue 15165002: Fix assert failure in RenderObjectChildList::removeChildNode (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix in split Created 7 years, 7 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
« no previous file with comments | « no previous file | LayoutTests/fullscreen/full-screen-inline-split-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <script src="full-screen-test.js"></script>
2 <body>
3 Test passes if it doesn't crash.
4 <span><span id="toBeMadeFullScreen"></span></span>
5 </body>
6 <script>
7
8 // Use window.eventSender to fake a user-action, allowing full-screen.
9 document.addEventListener("keypress", function() {
10 toBeMadeFullScreen.webkitRequestFullScreen();
11 }, false);
12 eventSender.keyDown(" ", []);
13
14 document.addEventListener("webkitfullscreenchange", function() {
15 toBeMadeFullScreen.parentNode.insertBefore(document.createElement('div'), to BeMadeFullScreen);
16 setTimeout(endTest(), 0);
17 }, false);
18 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fullscreen/full-screen-inline-split-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698