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

Unified Diff: LayoutTests/fast/borders/border-radius-mask-video.html

Issue 16688004: Large canvas does not honor containing div's border radius (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Replaced explicit baselines with NeedsRebaseline Created 7 years, 3 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/fast/borders/border-radius-mask-video.html
diff --git a/LayoutTests/fast/borders/border-radius-mask-video.html b/LayoutTests/fast/borders/border-radius-mask-video.html
new file mode 100644
index 0000000000000000000000000000000000000000..4a44bf91508ba59cc06abfc5cf8377b9dd17a494
--- /dev/null
+++ b/LayoutTests/fast/borders/border-radius-mask-video.html
@@ -0,0 +1,36 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <style>
+ video {
+ background-color: gray;
+ width: 400px;
+ height: 225px;
+ border-radius: 200px 0px 100px 0px;
+ -webkit-transform: translateZ(0);
+ }
+ </style>
+ <script>
+ if (window.internals) {
+ internals.settings.setAcceleratedCompositingForVideoEnabled(true);
+ }
+ if (window.testRunner) {
+ testRunner.waitUntilDone();
+ }
+ function canPlay() {
+ setTimeout(function() {
+ if (window.testRunner)
+ testRunner.notifyDone();
+ }, 0);
+ }
+ </script>
+ </head>
+ <body>
+ <h3>It passes if:</h3>
+ <ul>
+ <li>the video content has rounded corners (top left and bottom right)</li>
+ <li>gray background is not visible</li>
+ </ul>
+ <video src='../../media/resources/frame_size_change.webm' oncanplaythrough='canPlay();'></video>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698