mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
3d82028ac3
--HG-- extra : commitid : F8FqOZql1gs extra : rebase_source : 2cff12af1780483bc17827550cf4bd8dce2db096
15 lines
340 B
HTML
15 lines
340 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Test multiple calls to history.pushState</title>
|
|
</head>
|
|
<body>
|
|
<h1>Ohai</h1>
|
|
</body>
|
|
<script type="text/javascript">
|
|
window.history.pushState({}, "", "/bar/ABC?key=baz");
|
|
window.history.pushState({}, "", "/bar/ABC/DEF?key=baz");
|
|
</script>
|
|
</html>
|