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
/
css
/
clip-text-in-scaled-div.html
blob
5a1347ca56307b68faae0483fd3d88b47865cb3b
1
<html>
2
<style>
3
body { overflow: hidden; }
4
.scaled {
5
transform:scale(
2
);
6
-webkit-transform-origin: top left;
7
}
8
.clip-text {
9
background-color:red;
10
-webkit-background-clip:text;
11
-webkit-text-fill-color:transparent
12
}
13
</style>
14
<body>
15
<div
class
=
"scaled"
>
16
<span
class
=
"clip-text"
>
This text should be nice and sharp.
</span>
17
</div>
18
</body>
19
</html>