blob: b6b6b16e7e271cfd4f93c0dcf1155cafddfeba9d [file]
// Copyright 2014 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 onLoad() {
document.body.textContent = 'content';
}
function getBodyTextContent() {
return document.body.textContent;
}
function getBodyMarginLeft() {
return window.getComputedStyle(document.body).marginLeft;
}