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

Side by Side Diff: third_party/WebKit/LayoutTests/fullscreen/full-screen-ruleset-crash.html

Issue 2590793003: Don't update global ruleset when active style is dirty. (Closed)
Patch Set: window.eventSender Created 3 years, 12 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/StyleEngine.h » ('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 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script>
4 <style>
5 @media screen {}
6 </style>
7 <div id="fullscreen" onclick="requestFullscreen()">
8 Clicking this element should go fullscreen and not crash.
9 </div>
10 <script>
11 test(() => {
12 if (window.eventSender) {
13 eventSender.mouseMoveTo(fullscreen.offsetLeft + 1, fullscreen.offset Top + 1);
14 eventSender.mouseDown();
15 eventSender.mouseUp();
16 }
17 }, "Check that going fullscreen does not crash");
18 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/StyleEngine.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698