Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(841)

Unified Diff: Source/core/dom/Element.idl

Issue 1057603002: Expose scroll customization for touch to JS (behind REF). (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix case where documentElement was added to scroll chain twice. Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/dom/Element.idl
diff --git a/Source/core/dom/Element.idl b/Source/core/dom/Element.idl
index e16fbb87d0d3278386f13f82c09e9679e4207408..49ec1efef1a08e116414fa2882e209176b04b206 100644
--- a/Source/core/dom/Element.idl
+++ b/Source/core/dom/Element.idl
@@ -117,6 +117,10 @@
void blur();
// Non-standard APIs
+ // Experimental ScrollCustomization API
Rick Byers 2015/04/10 14:51:44 move this below the below methods (this isn't part
tdresser 2015/05/08 18:23:02 Moved up, not down, as it leaves the standard APIs
+ [RuntimeEnabled=ScrollCustomization] void applyScroll(ScrollState scrollState);
Rick Byers 2015/04/10 14:51:44 Now that attributes are exposed on the prototype c
tdresser 2015/05/08 18:23:02 I'm not convinced this is a simplification, but I
+ [RuntimeEnabled=ScrollCustomization] void distributeScroll(ScrollState scrollState);
+
// https://www.w3.org/Bugs/Public/show_bug.cgi?id=19962
[RaisesException, CustomElementCallbacks, MeasureAs=InsertAdjacentElement] Element insertAdjacentElement(DOMString where, Element element);
[RaisesException, MeasureAs=InsertAdjacentText] void insertAdjacentText(DOMString where, DOMString text);

Powered by Google App Engine
This is Rietveld 408576698