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