Chromium Code Reviews

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: Tab -> spaces Created 3 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« 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="this.requestFullscreen()">
mstensho (USE GERRIT) 2016/12/20 10:46:33 Don't need "this.", I think.
rune 2016/12/20 10:55:40 Done.
8 Clicking this element should go fullscreen and not crash.
9 </div>
10 <script>
11 test(() => {
12 eventSender.mouseMoveTo(fullscreen.offsetLeft + 1, fullscreen.offsetTop + 1);
mstensho (USE GERRIT) 2016/12/20 10:46:33 Should check if eventSender exists.
rune 2016/12/20 10:55:40 Done.
13 eventSender.mouseDown();
14 eventSender.mouseUp();
15 }, "Check that going fullscreen does not crash");
16 </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