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

Unified Diff: third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-vs-exit.html

Issue 2855843002: Reland "Sync requestFullscreen() and exitFullscreen() algorithms with the spec" (Closed)
Patch Set: Reland "Sync requestFullscreen() and exitFullscreen() algorithms with the spec" Created 3 years, 7 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
Index: third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-vs-exit.html
diff --git a/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-vs-exit.html b/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-vs-exit.html
index 539f7151f0b7573543c7e68af5e1e743225239ef..419673bd37050b765c1d5ae28a3a452cd7a3a031 100644
--- a/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-vs-exit.html
+++ b/third_party/WebKit/LayoutTests/fullscreen/api/element-request-fullscreen-vs-exit.html
@@ -18,7 +18,7 @@ async_test(t => {
document.onfullscreenerror = t.unreached_func("fullscreenerror event");
target.requestFullscreen();
- assert_equals(document.fullscreenElement, target, "fullscreenElement after requestFullscreen()");
+ assert_equals(document.fullscreenElement, null, "fullscreenElement after requestFullscreen()");
document.exitFullscreen();
assert_equals(document.fullscreenElement, null, "fullscreenElement after exitFullscreen()");
}, document.body);

Powered by Google App Engine
This is Rietveld 408576698