summaryrefslogtreecommitdiffstats
path: root/third_party/webkit/PerformanceTests/MotionMark/tests/master/text.html
blob: 5e94b8ce952bac9d546ab98d64627e73ed132cd6 (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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <link rel="stylesheet" type="text/css" href="../resources/stage.css">
    <style type="text/css">

        #stage {
            font-family: Helvetica;
            font-size: 52px;
            background-color: #313534;
        }
        @media (max-width: 900px) {
            #stage {
                font-size: 40px;
            }
        }
        @media (max-width: 568px) {
            #stage {
                font-size: 28px;
            }
        }

        #stage div {
            width: 80%;
            height: 90%;
            position: absolute;
            text-align: center;
        }
        #template {
            color: #FCFCFC;
        }
        table {
            position: relative;
            width: 100%;
            height: 100%;
        }
        td {
            width: 33%;
        }
        tr {
            height: 20%;
        }
    </style>
</head>
<body>
    <div id="stage">
        <div id="template">
            <table>
                <tbody>
                    <tr>
                        <td>σχέδιο</td>
                        <td>设计</td>
                        <td>suunnittelu</td>
                    </tr>
                    <tr>
                        <td>design</td>
                        <td>дизайн</td>
                        <td class="rtl">تصميم</td>
                    </tr>
                    <tr>
                        <td>디자인</td>
                        <td>conception</td>
                        <td>デザイン</td>
                    </tr>
                    <tr>
                        <td>konstruktion</td>
                        <td class="rtl">עיצוב</td>
                        <td>diseño</td>
                    </tr>
                </tbody>
            </table>
        </div>
    </div>
    <script src="../../resources/strings.js"></script>
    <script src="../../resources/extensions.js"></script>
    <script src="../../resources/statistics.js"></script>
    <script src="../resources/math.js"></script>
    <script src="../resources/main.js"></script>
    <script src="resources/text.js"></script>
</body>
</html>