blob: e7d156246cd0d8a3e8ffb9563cdb6b7d8dd1e5d4 [file] [log] [blame]
+// Copyright 2017 The Chromium Authors
+// 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();