summaryrefslogtreecommitdiff
path: root/Source/WebKit/chromium/tests/data/find_in_page_frame.html
blob: 47d29ae0fdd378606f7e12c9bd997de3b6037f28 (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<style type="text/css">
div.transform {
  background-color: #00FF00;
  width: 100px;
  height: 100px;
  padding-left: 30px;
  padding-top: 20px;
  -webkit-transform:matrix(0.866,0.5,-0.5,0.866,120,150);
}
div.scroll {
  background-color: #00FFFF;
  width: 100px;
  height: 100px;
  overflow: scroll;
}
div.fixed {
  background-color: #FF0000;
  left: 200px;
  top: 50px;
  width: 100px;
  height: 100px;
  position: fixed;
}
</style>
</head>
<body>
This is a test.
</br></br>
</br></br>
</br></br>
Foo bar.
</br></br>
</br></br>
</br></br>
result 2
<div class="transform">
result 3
</div>
result 4
<div class="fixed">
result 5
</div>
result 6
<div class="scroll">
result 7
Foo bar.
</br></br>
</br></br>
</br></br>
result 8
</div>
result 9
</body>
</html>