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

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

Issue 414303006: Fix use-after-free related to RenderFullScreen (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: new deal 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
« no previous file with comments | « no previous file | LayoutTests/fullscreen/full-screen-contentEditable-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 <!DOCTYPE html>
2 Pass if there is no crash.
3 <div></div>
4 <span></span>
5 Click anywhere to test manually.
6 <script>
7 if (window.testRunner) {
8 testRunner.dumpAsText();
9 testRunner.waitUntilDone();
10 }
11
12 function requestFullscreen()
13 {
14 document.querySelector("span").webkitRequestFullScreen();
15 }
16
17 document.addEventListener("webkitfullscreenchange", function()
18 {
19 document.body.contentEditable = "true";
20 var range = document.createRange();
21 range.selectNode(document.body);
22 document.getSelection().addRange(range);
23 document.execCommand("hiliteColor", false, "#000");
24 if (window.testRunner) {
25 testRunner.notifyDone();
26 }
27 });
28
29 document.addEventListener("click", requestFullscreen);
30
31 if (window.eventSender) {
32 eventSender.mouseDown();
33 eventSender.mouseUp();
34 }
35 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fullscreen/full-screen-contentEditable-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698