forked from alibaba/weex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbenchmark.html
42 lines (37 loc) · 885 Bytes
/
benchmark.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Benchmark</title>
<style>
body, body * {
box-sizing: border-box;
position: relative;
display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
display: -webkit-flex; /* NEW - Chrome */
display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
-webkit-box-orient: vertical;
-webkit-flex-direction: column;
flex-direction: column;
-webkit-box-align: stretch;
-webkit-align-items: stretch;
align-items: stretch;
-webkit-flex-shrink: 0;
flex-shrink: 0;
border: 0 solid black;
margin: 0;
padding: 0;
}
script, style {
display: none !important;
}
body {
margin: 0;
background-color: #F4F3DE;
-webkit-text-size-adjust: none;
}
</style>
</head>
<body>
</body>
</html>