Index: core/events/HashChangeEventInit.idl |
diff --git a/core/frame/ScrollOptions.idl b/core/events/HashChangeEventInit.idl |
similarity index 51% |
copy from core/frame/ScrollOptions.idl |
copy to core/events/HashChangeEventInit.idl |
index 8a2af31d66e7b464aa35db1f38b595118844445b..495ba59a94920e28cf53bb3481ebc5b2af8a6851 100644 |
--- a/core/frame/ScrollOptions.idl |
+++ b/core/events/HashChangeEventInit.idl |
@@ -2,10 +2,9 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-// Spec: Non-standard |
+// https://html.spec.whatwg.org/multipage/browsers.html#hashchangeevent |
-[ |
- GarbageCollected |
-] dictionary ScrollOptions { |
- DOMString behavior; |
+dictionary HashChangeEventInit : EventInit { |
+ DOMString oldURL; |
+ DOMString newURL; |
}; |