| Index: LayoutTests/fast/loader/page-scale-resets-on-new-navigation.html
|
| diff --git a/LayoutTests/fast/loader/page-scale-resets-on-new-navigation.html b/LayoutTests/fast/loader/page-scale-resets-on-new-navigation.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..24639fce0702671378250a7b272f52b7720a3100
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/loader/page-scale-resets-on-new-navigation.html
|
| @@ -0,0 +1,25 @@
|
| +<html>
|
| +<head>
|
| +<script>
|
| +
|
| + function navigate()
|
| + {
|
| + if (window.testRunner) {
|
| + testRunner.dumpAsText();
|
| + testRunner.waitUntilDone();
|
| + }
|
| +
|
| + if (window.internals)
|
| + internals.setPageScaleFactor(2, 0, 0);
|
| +
|
| + setTimeout("window.location.href = 'resources/page-scale-resets-on-new-navigation-child.html'", 0);
|
| + return;
|
| + }
|
| +
|
| +</script>
|
| +
|
| +</head>
|
| +<body style="width:800px" onpageshow="navigate()">
|
| + <div id="result">Fail. The navigation did not occur.</div><br/>
|
| +</body>
|
| +</html>
|
|
|