Index: core/frame/ScrollOptions.idl |
diff --git a/core/frame/ScrollOptions.idl b/core/frame/ScrollOptions.idl |
index 8a2af31d66e7b464aa35db1f38b595118844445b..b09ded973d8ad7b978744ac279f5b9dad5549aa0 100644 |
--- a/core/frame/ScrollOptions.idl |
+++ b/core/frame/ScrollOptions.idl |
@@ -2,10 +2,10 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-// Spec: Non-standard |
+// http://dev.w3.org/csswg/cssom-view/#extensions-to-the-window-interface |
-[ |
- GarbageCollected |
-] dictionary ScrollOptions { |
- DOMString behavior; |
+enum ScrollBehavior { "auto", "instant", "smooth" }; |
+ |
+dictionary ScrollOptions { |
+ ScrollBehavior behavior = "auto"; |
}; |