~chromium-team/chromium-browser/trusty-beta

« back to all changes in this revision

Viewing changes to debian/tests/data/HTML5test/backend/templates/timeline.html

  • Committer: Olivier Tilloy
  • Date: 2017-10-23 16:46:53 UTC
  • mfrom: (1172.1.38 trusty-stable)
  • Revision ID: olivier.tilloy@canonical.com-20171023164653-zmpfzblxxnkj0jhj
Merge back changes from stable branch:
  * debian/control: bump Standards-Version to 4.1.1
  * debian/patches/set-rpath-on-chromium-executables.patch: updated
  * debian/tests/*:
    - removed stale autopkgtests
    - added new autopkgtests based on chromium's new headless mode
  * debian/source/include-binaries: updated to reflect new binary data in tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html>
 
2
<html>
 
3
        <head>
 
4
                <title>HTML5test - How well does your browser support HTML5?</title>
 
5
 
 
6
                <meta charset="UTF-8">
 
7
                <meta name="apple-mobile-web-app-capable" content="yes">
 
8
                <meta name="apple-mobile-web-app-status-bar-style" content="black">
 
9
                <meta name="viewport" content="width=device-width, initial-scale=1.0">
 
10
 
 
11
                <link rel="stylesheet" href="/css/main.css" type="text/css">
 
12
                <link rel="stylesheet" href="/css/reporting.css" type="text/css">
 
13
 
 
14
                <script src='/scripts/base.js' type='text/javascript'></script>
 
15
                <script src='/scripts/reporting.js' type='text/javascript'></script>
 
16
                <script src='/scripts/8/data.js' type='text/javascript'></script>
 
17
 
 
18
                <meta name="application-name" content="HTML5test"/>
 
19
 
 
20
                <link rel="apple-touch-icon" sizes="57x57" href="/images/icons/apple-touch-icon-57x57.png" />
 
21
                <link rel="apple-touch-icon" sizes="114x114" href="/images/icons/apple-touch-icon-114x114.png" />
 
22
                <link rel="apple-touch-icon" sizes="72x72" href="/images/icons/apple-touch-icon-72x72.png" />
 
23
                <link rel="apple-touch-icon" sizes="144x144" href="/images/icons/apple-touch-icon-144x144.png" />
 
24
                <link rel="apple-touch-icon" sizes="60x60" href="/images/icons/apple-touch-icon-60x60.png" />
 
25
                <link rel="apple-touch-icon" sizes="120x120" href="/images/icons/apple-touch-icon-120x120.png" />
 
26
                <link rel="apple-touch-icon" sizes="76x76" href="/images/icons/apple-touch-icon-76x76.png" />
 
27
                <link rel="apple-touch-icon" sizes="152x152" href="/images/icons/apple-touch-icon-152x152.png" />
 
28
                <link rel="icon" type="image/png" href="/images/icons/favicon-16x16.png" sizes="16x16" />
 
29
                <link rel="icon" type="image/png" href="/images/icons/favicon-32x32.png" sizes="32x32" />
 
30
                <link rel="icon" type="image/png" href="/images/icons/favicon-96x96.png" sizes="96x96" />
 
31
                <link rel="icon" type="image/png" href="/images/icons/favicon-160x160.png" sizes="160x160" />
 
32
                <link rel="icon" type="image/png" href="/images/icons/favicon-196x196.png" sizes="196x196" />
 
33
                <meta name="msapplication-TileColor" content="#0092bf" />
 
34
                <meta name="msapplication-TileImage" content="/images/icons/mstile-144x144.png" />
 
35
        </head>
 
36
 
 
37
        <body>
 
38
                <div class='header'>
 
39
                        <h1><span>HTML<strong>5</strong>test</span> <em>how well does your browser support HTML5?</em></h1>
 
40
                        <div class='navigation'>
 
41
                                <ul class='left'>
 
42
                                        <li><a href='/index.html'>Your browser</a></li>
 
43
                                        <li class='selected'><a href='/results/desktop.html'>Other browsers</a></li>
 
44
                                        <li><a href='/compare/browser/index.html'>Compare</a></li>
 
45
                                </ul>
 
46
                                <ul class='right'>
 
47
                                        <li><a href='http://blog.html5test.com/'>News</a></li>
 
48
                                        <li><a href='/devicelab'>Device Lab</a></li>
 
49
                                        <li><a href='/about.html'>About<span> the test</span></a></li>
 
50
                                </ul>
 
51
                        </div>
 
52
                </div>
 
53
 
 
54
                <div class='page saved'>
 
55
                        <div id='contents' class='column'>
 
56
                                <div class='paper'>
 
57
                                        <div>
 
58
                                                <script>
 
59
 
 
60
                                                        var m = new Metadata(tests);
 
61
 
 
62
                                                </script>
 
63
 
 
64
                                                <h2>Timeline <span> for <?php echo htmlentities($name); ?></span></h2>
 
65
                                                <hr>
 
66
 
 
67
                                                <?php foreach($timeline as $item): ?>
 
68
                                                        <div class='diffHeader'>
 
69
                                                                <div class='points'><?php echo $item->score; ?></div>
 
70
                                                                <h3><a href='/compare/browser/<?php echo $item->platform . ($item->version ? '-' . $item->version : ''); ?>.html'><?php echo $item->nickname; ?> <span>»</span></a></h3>
 
71
                                                                <?php if ($item->status != 'upcoming'): ?>
 
72
                                                                        <?php if (!is_null($item->releasedate)): ?>
 
73
                                                                        <p>Release date: <?php echo date('d-m-Y', strtotime($item->releasedate)); ?></p>
 
74
                                                                        <?php else: ?>
 
75
                                                                        <p>Release date: unknown</p>
 
76
                                                                        <?php endif; ?>
 
77
                                                                <?php else: ?>
 
78
                                                                <p>Not yet released</p>
 
79
                                                                <?php endif; ?>
 
80
                                                        </div>
 
81
 
 
82
                                                        <?php if(isset($item->changes) && count($item->changes)): ?>
 
83
                                                        <div id="changes_<?php echo md5($item->platform . '-' . $item->version); ?>" class="detailsTable diffTable"></div>
 
84
 
 
85
                                                        <script>
 
86
 
 
87
                                                                new DiffTable({
 
88
                                                                        parent:         document.getElementById("changes_<?php echo md5($item->platform . '-' . $item->version); ?>"),
 
89
                                                                        metadata:       m,
 
90
                                                                        data:           <?php echo json_encode($item->changes); ?>
 
91
                                                                });
 
92
 
 
93
                                                        </script>
 
94
                                                        <?php endif; ?>
 
95
                                                        <hr>
 
96
                                                <?php endforeach; ?>
 
97
 
 
98
                                                <div class='text'>
 
99
                                                        These results are collected from many thousands of visitors using all kinds of devices.
 
100
                                                        Excluded from this timeline are changes in video and audio codecs, because they are often
 
101
                                                        dependant on operating system and device hardware.
 
102
                                                </div>
 
103
                                        </div>
 
104
                                </div>
 
105
 
 
106
                                <div class='footer'>
 
107
                                        <div>
 
108
                                                <div class='copyright'>
 
109
                                                        <p>
 
110
                                                                Created by Niels Leenheer.<br>
 
111
                                                                Please note that the HTML5 test is not affiliated with the W3C or the HTML5 working group.<br>
 
112
                                                                HTML5 Logo by <a href="http://www.w3.org/"><abbr title="World Wide Web Consortium">W3C</abbr></a>.
 
113
                                                                Browser detection by <a href='http://whichbrowser.net'>WhichBrowser</a>.
 
114
                                                        </p>
 
115
 
 
116
                                                        <div id='cloudvps'>
 
117
                                                                <a href="http://www.cloudvps.nl" target="_blank" ><b>CloudVPS</b><br> High Availability<br> Cloud Servers</a>
 
118
                                                        </div>
 
119
                                                </div>
 
120
                                        </div>
 
121
                                </div>
 
122
                        </div>
 
123
                </div>
 
124
 
 
125
                <script src='//www.google-analytics.com/ga.js'></script>
 
126
                <script>
 
127
                <!--
 
128
                        try {
 
129
                                var pageTracker = _gat._getTracker("UA-68192-4");
 
130
                                pageTracker._trackPageview();
 
131
                        } catch(err) {}
 
132
                //-->
 
133
                </script>
 
134
        </body>
 
135
</html>