repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge Chromium + Blink git repositories
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
css3
/
masking
/
mask-luminance-gradient-expected.html
blob
b16ec5ca9c42516dd01146b2faee7b46970b7b60
1
<!DOCTYPE
html
>
2
<html
lang
=
"en"
>
3
<head>
4
<style>
5
#back {
6
width:
800
px;
7
height:
400
px;
8
background-color: yellow;
9
}
10
#front {
11
width:
600
px;
12
height:
200
px;
13
background-color: green;
14
border:
50
px solid blue;
15
padding:
50
px;
16
-webkit-mask-image: linear-gradient(
45
deg, black, transparent
100
%);
17
mask-source-type: alpha;
18
-webkit-mask-size:
200
px auto;
19
}
20
</style>
21
</head>
22
23
<body>
24
<div
id
=
"back"
>
25
<div
id
=
"front"
/>
26
</div>
27
</body>
28
</html>
29