blob: 24d9e897baae66d3b341a4b5f95b57f4dbfd9ab0 [file] [log] [blame] [edit]
<script src="../resources/js-test.js"></script>
<script>
description("This tests that the Navigation object is replaceable");
window.onload = () => {
shouldNotBe("navigation", "\"foo\"");
navigation = "foo";
shouldBe("navigation", "\"foo\"");
}
</script>