mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 09:53:07 +09:00
15 lines
418 B
HTML
15 lines
418 B
HTML
<!doctype html>
|
|
<html class="a">
|
|
<head>
|
|
<title>element.getElementsByClassName(): simple</title>
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
</head>
|
|
<body class="a">
|
|
<div id="log"></div>
|
|
<script>test(function() {
|
|
assert_array_equals(document.body.getElementsByClassName("a"), [])
|
|
})
|
|
</script>
|
|
</body>
|
|
</html>
|