Index: Source/core/dom/Document.idl |
diff --git a/Source/core/dom/Document.idl b/Source/core/dom/Document.idl |
index 4a640c8fd6a07e09639c7a449d83b7bead584d22..f0c63273d2f6589d5806bd690895ab5b6d0e4d71 100644 |
--- a/Source/core/dom/Document.idl |
+++ b/Source/core/dom/Document.idl |
@@ -215,6 +215,10 @@ typedef (CanvasRenderingContext2D or WebGLRenderingContext) RenderingContext; |
[MeasureAs=PrefixedPageVisibility, ImplementedAs=hidden] readonly attribute boolean webkitHidden; |
readonly attribute HTMLScriptElement currentScript; |
+ |
+ // Internal API for XSLT |
+ [OnlyExposedToPrivateScript] void applyXSLTransform(ProcessingInstruction styleSheet); |
+ [OnlyExposedToPrivateScript] readonly attribute Document transformSourceDocument; |
abarth-chromium
2014/08/05 18:51:41
I'm concerned about adding a bunch of private APIs
tasak
2014/08/06 02:52:03
Yeah, I would like to remove applyXSLTransform and
|
}; |
Document implements GlobalEventHandlers; |