mirror of
https://github.com/servo/servo.git
synced 2025-10-10 05:20:19 +01:00
8 lines
309 B
HTML
8 lines
309 B
HTML
<!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>
|