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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/canvas/webgl/webgl-shadow-no-alpha.html

Issue 2629083003: Fix box shadow rendering on opaque WebGL canvases (Closed)
Patch Set: fixed tests Created 3 years, 11 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <p>Expect a black square with a soft red shadow below this text.</p>
3 <canvas id='c' width='100' height='100' style="box-shadow: 5px 10px 0px rgba(255 ,0,0,0.4);"></canvas>
4 <script>
5 var canvas = document.getElementById('c');
6 var gl = canvas.getContext('webgl', {alpha:false});
7 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698