Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(499)

Unified Diff: content/test/data/dom_storage/common.js

Issue 9956117: DomStorageBrowserTest sanity check (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/test/data/dom_storage/common.js
===================================================================
--- content/test/data/dom_storage/common.js (revision 0)
+++ content/test/data/dom_storage/common.js (revision 0)
@@ -0,0 +1,29 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+function debug(message) {
+ var span = document.createElement("span");
+ span.appendChild(document.createTextNode(message));
+ span.appendChild(document.createElement("br"));
+ document.getElementById('status').appendChild(span);
+}
+
+function done(message) {
+ if (document.location.hash == '#fail')
+ return;
+ if (message)
+ debug('PASS: ' + message);
+ else
+ debug('PASS');
+ document.location.hash = '#pass';
+}
+
+function fail(message) {
+ debug('FAILED: ' + message);
+ document.location.hash = '#fail';
+}
+
+function getLog() {
+ return "" + document.getElementById('status').innerHTML;
+}
Property changes on: content\test\data\dom_storage\common.js
___________________________________________________________________
Added: svn:eol-style
+ LF

Powered by Google App Engine
This is Rietveld 408576698