blob: 7184beaa526f396e46704e7074b3260b9e015e2a (
plain)
1
2
3
4
5
6
7
8
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/ */
function onLoad() {
document.documentElement.style.backgroundColor = "green";
}
addEventListener("load", onLoad, false);
|