2025-03-18 15:28:35 -03:00
|
|
|
<!DOCTYPE html>
|
2024-08-06 09:18:40 -03:00
|
|
|
<script src="../include.js"></script>
|
|
|
|
|
<script>
|
|
|
|
|
asyncTest((done) => {
|
|
|
|
|
let handler = function() {
|
|
|
|
|
println("PASS");
|
|
|
|
|
|
|
|
|
|
window.navigation.removeEventListener("navigate", handler);
|
|
|
|
|
history.pushState({}, null, "pushState-navigation-event.html");
|
|
|
|
|
done();
|
|
|
|
|
};
|
|
|
|
|
window.navigation.addEventListener("navigate", handler);
|
|
|
|
|
history.pushState({}, null, "?ok");
|
|
|
|
|
});
|
|
|
|
|
</script>
|