blob: 703bb873b2bfcda4237bed70b325bdba8b5130ec (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!DOCTYPE html>
<html><head>
<title>CSS Reftest Reference</title>
<link href="mailto:rhauck@adobe.com" rel="author" title="Rebecca Hauck">
<link href="mailto:mibalan@adobe.com" rel="reviewer" title="Mihai Balan"> <!-- 2013-07-24 -->
<style>
#vertical {
color: green;
font-family: Ahem;
font-size: 20px;
line-height: 100px;
transform: rotateZ(90deg);
}
#horizontal {
border-bottom: 20px solid green;
width: 100px;
height: 80px;
}
</style>
</head>
<body>
<p>The test passes if you see a green cross and no red.</p>
<div id="horizontal">
<div id="vertical">
XXXXXXXXX
</div>
</div>
</body></html>
|