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
/
svg
/
custom
/
inline-style-overrides-clipPath.svg
blob
9476b98e3dd2dae0c74ba733aa5e56df0c79f2e1
1
<svg
xmlns
=
"http://www.w3.org/2000/svg"
xmlns:
xlink
=
"http://www.w3.org/1999/xlink"
>
2
<style
type
=
"text/css"
>
<![CDATA[
3
rect {
4
fill: green;
5
clip-path: url(#path);
6
}
7
]]
>
8
</style>
9
<defs>
10
<clipPath
id
=
"path"
>
11
<rect
width
=
"50"
height
=
"50"
/>
12
</clipPath>
13
</defs>
14
15
<rect
width
=
"100"
height
=
"100"
style
=
"clip-path: none;"
/>
16
</svg>