blob: ed933449055ae9e94f6936b1d4cdeba0197e21b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!doctype html>
<html class="a">
<head>
<title>element.getElementsByClassName(): simple</title>
<script src="resources/common.js"></script>
</head>
<body class="a">
<p id="r">FAIL (script did not run)</p>
<script> t(document.body.getElementsByClassName("a"), []) </script>
</body>
</html>
|