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

Unified Diff: LayoutTests/fullscreen/video-webkit-transform-expected.html

Issue 221333002: Fix an issue that webkit-transform might impact fullscreen video (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: add layout test result for virtual/android due to the special flag we added earlier Created 6 years, 9 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: LayoutTests/fullscreen/video-webkit-transform-expected.html
diff --git a/LayoutTests/fullscreen/video-webkit-transform-expected.html b/LayoutTests/fullscreen/video-webkit-transform-expected.html
new file mode 100644
index 0000000000000000000000000000000000000000..01c76338e84a1bdd8d95fe60355dc3ba4ad5b7ca
--- /dev/null
+++ b/LayoutTests/fullscreen/video-webkit-transform-expected.html
@@ -0,0 +1,21 @@
+<!DOCTYPE html>
+<video id="video" allowfullscreen></video>
+<script>
+ if (window.internals)
+ runPixelTests = true;
+</script>
+<script src="full-screen-test.js"></script>
+<script>
+ var video = document.getElementById('video');
+
+ waitForEvent(document, 'webkitfullscreenchange', function()
+ {
+ endTest();
+ });
+
+ runWithKeyDown(function()
+ {
+ video.webkitRequestFullScreen();
+ });
+</script>
+

Powered by Google App Engine
This is Rietveld 408576698