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); |