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
Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
fast
/
box-shadow
/
inset-shadow-large-offset.html
blob
bd96afc1849f9f63f4a85bb4320a995c5c122b97
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<style
type
=
"text/css"
>
5
.box
{
6
width
:
100px
;
7
height
:
100px
;
8
margin
:
10px
;
9
background-color
:
red
;
10
}
11
</style>
12
</head>
13
<body>
14
15
<!-- You should see no red -->
16
<div
class
=
"box"
style
=
"box-shadow: 150px 150px 0 green inset"
></div>
17
<div
class
=
"box"
style
=
"box-shadow: -150px -150px 0 green inset"
></div>
18
19
</body>
20
</html>