Sign in
chromium
/
chromium
/
src.git
/
61.0.3140.1
/
.
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
canvas
/
canvas-background-alpha.html
blob: ceb42f92fdbd73bc3c9293ae18ccd760f3bbc7df [
file
] [
log
] [
blame
]
<!doctype html>
<style>
#
c
{
background
:
rgba
(
0
,
0
,
0
,
0.2
);
}
</style>
<canvas
id
=
'c'
width
=
'300'
height
=
'300'
>
<script>
// bug crbug.com/416174
var
ctx
=
document
.
getElementById
(
"c"
).
getContext
(
"2d"
);
ctx
.
clearRect
(
0
,
0
,
150
,
150
);
</script>