OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Spec work is being tracked on W3C bug: https://www.w3.org/Bugs/Public/show_bu
g.cgi?id=28553 | 5 // Experimental Scroll Restoration API |
| 6 // https://www.chromestatus.com/features/5657284784947200 |
6 | 7 |
7 enum ScrollRestoration {"auto", "manual"}; | 8 enum ScrollRestoration {"auto", "manual"}; |
8 | 9 |
9 dictionary StateOptions { | 10 dictionary StateOptions { |
10 ScrollRestoration scrollRestoration = "auto"; | 11 ScrollRestoration scrollRestoration = "auto"; |
11 }; | 12 }; |
OLD | NEW |