Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…platform-tests#38755)

REGRESSION(257542@main): Video is misaligned in youtube.com's native PiP player after transitioning from full screen
https://commits.webkit.org/260985@main
  • Loading branch information
nt1m authored Mar 1, 2023
1 parent 49287d0 commit 6916fc7
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions fullscreen/model/move-fullscreen-element.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html>
<title>Moving the fullscreen element should not leave the fullscreen flag</title>
<link rel="author" title="Tim Nguyen" href="https://github.com/nt1m">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="../trusted-click.js"></script>

<div id="fullscreen-element">Fullscreen element</div>

<div id="new-parent"></div>

<script>
promise_test(async () => {
const fullscreenElement = document.getElementById("fullscreen-element");
await trusted_request(fullscreenElement);
assert_true(fullscreenElement.matches(":fullscreen"), "Element has fullscreen flag");
assert_equals(document.fullscreenElement, fullscreenElement, "Element is fullscreen element");
document.getElementById("new-parent").appendChild(fullscreenElement);
assert_false(fullscreenElement.matches(":fullscreen"), "Element no longer has fullscreen flag after being moved");
assert_false(!!document.fullscreenElement, "There is no more fullscreen element, since fullscreen flag was removed");
await fullScreenChange();
assert_false(fullscreenElement.matches(":fullscreen"), "Element no longer has fullscreen flag after fullscreen change event");
assert_false(!!document.fullscreenElement, "There is no more fullscreen element, since fullscreen flag was removed");
});
</script>
</html>

0 comments on commit 6916fc7

Please sign in to comment.