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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/pagination/modal-dialog-crash.html

Issue 1850153002: Make top-layer elements work also when the viewport is paginated. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: code review Created 4 years, 8 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <p>PASS if no crash or assertion failure.</p>
3 <dialog id="dialog">
4 <div id="dialogChild">
5 <div style="transform:rotatey(0deg);"></div>
6 <div style="position:absolute;"></div>
7 </div>
8 </dialog>
9 <script src="../../resources/run-after-layout-and-paint.js"></script>
10 <script>
11 if (window.testRunner)
12 testRunner.dumpAsText();
13 document.getElementById("dialog").showModal();
14 runAfterLayoutAndPaint(function() {
15 document.body.style.overflowY = "-webkit-paged-x";
16 document.getElementById("dialog").style.overflowY = "-webkit-paged-x";
17 document.getElementById("dialogChild").style.overflowY = "-webkit-paged- x";
18 }, true);
19 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698