blob: 98efb6b20c0a1ecb7f3c9fdcee9400656217a57b (
plain)
1
2
3
4
5
6
7
8
|
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
test(() => {
assert_not_equals(navigation.entries(), navigation.entries());
}, "navigation.entries() should not return an identical object on repeated invocations");
</script>
|