entries-array-equality.html (309B)
1 <!doctype html> 2 <script src="/resources/testharness.js"></script> 3 <script src="/resources/testharnessreport.js"></script> 4 <script> 5 test(() => { 6 assert_not_equals(navigation.entries(), navigation.entries()); 7 }, "navigation.entries() should not return an identical object on repeated invocations"); 8 </script>