5 Copyright 2015 The Chromium Authors. All rights reserved.
6 Use of this source code is governed by a BSD-style license that can be
7 found in the LICENSE file.
11 <meta name=\
"viewport\" content=\
"width=device-width, initial-scale=1\">
19 background-color: green;
20 -webkit-transform: translate3d(
0,
0,
0);
24 function pingAndOpenHello(e
) {
25 var img
= new Image();
26 img
.onload = function () {
27 window
.location
= 'hello.html';
29 img
.src
= '../image_search/valid.png';
35 first
.ontouchstart
= pingAndOpenHello
;
39 <body onload='setup();'
>
40 <div id='first'
></div>