Get foreground tab on Android
[chromium-blink-merge.git] / content / test / data / dom_storage / common.js
blob3052a40ad2bf22fe180ef47317a6dc67ddf8d5fb
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 function debug(message) {
6   var span = document.createElement("span");
7   span.appendChild(document.createTextNode(message));
8   span.appendChild(document.createElement("br"));
9   document.getElementById('status').appendChild(span);
12 function done(message) {
13   if (document.location.hash == '#fail')
14     return;
15   if (message)
16     debug('PASS: ' + message);
17   else
18     debug('PASS');
19   document.location.hash = '#pass';
22 function fail(message) {
23   debug('FAILED: ' + message);
24   document.location.hash = '#fail';
27 function getLog() {
28   return "" + document.getElementById('status').innerHTML;