blob: 46d266ac131304112ea428501e3ce2bb16d2acb6 [file]
+// Copyright 2017 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 hello_world() {
var div = document.createElement('div');
document.body.appendChild(div);
div.textContent = 'Hello, World!';
}
hello_world();