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
/
paint
/
invalidation
/
spv2
/
background-shorthand-with-gradient-and-height-changes-expected.html
blob
99a9245dcde24f3228ad3b5f3f627bce993b8ca8
1
<html>
2
<head>
3
4
<style>
5
#outer {
6
padding-top:
200
px;
7
/* background-size is implicitly set to initial via the background shorthand. */
8
background:-webkit-gradient(
9
linear,
10
left top,
11
left bottom,
12
color-stop(
0
%, rgba(
255
,
255
,
0
,
0
)), color-stop(
100
%, rgba(
0
,
0
,
0
,
1
))
13
);
14
}
15
16
#inner {
17
height:
300
px;
18
}
19
</style>
20
21
</head>
22
<body
'
>
23
<div
id='outer'
>
24
<div
id='inner'
>
25
</div>
26
</div>
27
</body>
28
</html>