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
/
fast
/
layers
/
backface-visibility-zero-width.html
blob
f5b10cfcdf56189d78b7d31537c3d0f312e87f44
1
<!DOCTYPE
html
>
2
<html>
3
<head>
4
<title>
Zero-width layers
</title>
5
<style>
6
7
.foo {
8
margin:
100
px;
9
}
10
11
.button {
12
backface-visibility: hidden;
13
display: block;
14
font-size:
14
px;
15
height:
46
px;
16
position: absolute;
17
left:
105
px;
18
text-align: center;
19
text-transform: lowercase;
20
top:
27
px;
21
transform: none;
22
visibility: visible;
23
width:
0
px;
24
z-index:
10021
;
25
}
26
27
.button::before {
28
color: rgb(
0
,
0
,
0
);
29
display: block;
30
font-size:
40
px;
31
height:
46
px;
32
width:
0
px;
33
z-index: auto;
34
content: 'A'
35
}
36
37
.container {
38
width:
100
%;
39
height:
100
%;
40
}
41
42
</style>
43
</head>
44
<body>
45
<aside
class
=
"container"
>
46
<span
class
=
"button"
></span>
47
<div
class
=
"foo"
></div>
48
</aside>
49
<p>
50
A lowercase a should appear above.
51
</p>
52
</body>
53
</html>