blob: d19c6bca90998eefadc0df87fe5065c74c5ea29b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<head>
<script src="resources/text-based-repaint.js" type="text/javascript"></script>
<script>
function repaintTest()
{
document.getElementById("target").style.backgroundColor = "lightpink";
}
</script>
</head>
<body onload="runRepaintTest()">
<button id="target" style="height: 100px; width: 100px; background-color: lightblue; border: none;"> </button>
</body>
|