| Index: content/test/data/overscroll_navigation.html
|
| diff --git a/content/test/data/overscroll_navigation.html b/content/test/data/overscroll_navigation.html
|
| index 4bde51bfa953cbb515b6bd85af716285166eeb05..12fc696363567ee93bc474eb2f749f6fb58b14e3 100644
|
| --- a/content/test/data/overscroll_navigation.html
|
| +++ b/content/test/data/overscroll_navigation.html
|
| @@ -57,6 +57,14 @@ function uninstall_touch_handler() {
|
| document.removeEventListener('touchstart', touch_start_handler);
|
| }
|
|
|
| +function use_replace_state() {
|
| + window.history.replaceState({}, 'foo');
|
| +}
|
| +
|
| +function use_push_state() {
|
| + window.history.pushState({}, 'foo2');
|
| +}
|
| +
|
| onload = function() {
|
| window.onhashchange = function() {
|
| document.title = "Title: " + location.hash;
|
|
|