blob: ad06a3118b0b8fabd7dc67e0b18f0b80c12b53b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<head>
<script type="application/javascript">
function setup() {
// Set up targets for sandbox expandos.
window.targetDOM = [document.getElementById("hello"), document.getElementById("there")];
}
</script>
</head>
<body onload="setup();">
<span id="hello" class="iamaspan">Hello</span>
<span id="there" class="iamaspan">There</span>
</body>
</html>
|