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

Unified Diff: LayoutTests/fast/borders/border-radius-mask-video-shadow.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-shadow.html
diff --git a/LayoutTests/fast/borders/border-radius-mask-video-shadow.html b/LayoutTests/fast/borders/border-radius-mask-video-shadow.html
new file mode 100644
index 0000000000000000000000000000000000000000..04eaff7868e3869b5e8ea8536490063787a38944
--- /dev/null
+++ b/LayoutTests/fast/borders/border-radius-mask-video-shadow.html
@@ -0,0 +1,39 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <style>
+ video {
+ background-color: gray;
+ width: 500px;
+ height: 225px;
+ border-radius: 200px 0px 100px 0px;
+ box-shadow: 0 0 8px 8px red;
+ margin: 10px;
+ -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>the remaining space is gray and has same rounded corners as video content</li>
+ <li>has box shadow around the video element</li>
+ </ul>
+ <video src='../../media/resources/frame_size_change.webm' oncanplaythrough='canPlay();'></video>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698