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

Unified Diff: third_party/WebKit/LayoutTests/fullscreen/orthogonal-writing-mode-full-screen-reattach-crash.html

Issue 2258973002: Avoid LayoutFullScreen to be orthogonal writing-mode roots when reattached (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebaseline Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fullscreen/orthogonal-writing-mode-full-screen-reattach-crash-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fullscreen/orthogonal-writing-mode-full-screen-reattach-crash.html
diff --git a/third_party/WebKit/LayoutTests/fullscreen/orthogonal-writing-mode-full-screen-reattach-crash.html b/third_party/WebKit/LayoutTests/fullscreen/orthogonal-writing-mode-full-screen-reattach-crash.html
new file mode 100644
index 0000000000000000000000000000000000000000..e0f0c3e2f4ecf8b4e539d454a4fba6f67e8553a3
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/fullscreen/orthogonal-writing-mode-full-screen-reattach-crash.html
@@ -0,0 +1,23 @@
+<!DOCTYPE html>
+<script src=full-screen-test.js></script>
+<style>
+#v {
+ writing-mode: vertical-rl;
+}
+</style>
+<div id=v><span id=fullscreen></span></div>
+<script>
+function fullscreenChanged() {
+ // Change the 'display' property to cause reattach.
+ fullscreen.style.display = 'block';
+ document.body.offsetTop;
+
+ document.exitFullscreen();
+
+ endTest();
+}
+waitForEvent(document, "webkitfullscreenchange", fullscreenChanged);
+runWithKeyDown(function () {
+ fullscreen.webkitRequestFullscreen();
+});
+</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fullscreen/orthogonal-writing-mode-full-screen-reattach-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698