add tests to insure window.location.hash changes & window.history.replaceState cause 'did-navigate-in-page' to fire

This commit is contained in:
leethomas 2016-01-01 18:51:12 -08:00
parent 26397d9155
commit ce733e5927
3 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,9 @@
<html>
<body>
<script type="text/javascript">
onload = function() {
window.history.replaceState('test', 'test', 'http://host/');
}
</script>
</body>
</html>