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

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

Issue 365873002: Implement a part of ProcessingInstruction by using PrivateScript (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Use PrivateScript to invoke XSLTransform Created 6 years, 4 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/ProcessingInstruction.idl
diff --git a/Source/core/dom/ProcessingInstruction.idl b/Source/core/dom/ProcessingInstruction.idl
index c082c1035109313123481eca3c09b6b7e0b60e1e..c436a4939c489542045fb05c2bdba47bb958bfcc 100644
--- a/Source/core/dom/ProcessingInstruction.idl
+++ b/Source/core/dom/ProcessingInstruction.idl
@@ -26,5 +26,9 @@ interface ProcessingInstruction : CharacterData {
// interface LinkStyle from DOM Level 2 Style Sheets
readonly attribute StyleSheet sheet;
+
+ [ImplementedInPrivateScript, OnlyExposedToPrivateScript] void registerSheet(boolean parsing);
+ [ImplementedInPrivateScript, OnlyExposedToPrivateScript] void unregisterSheet();
+ [ImplementedInPrivateScript, OnlyExposedToPrivateScript] void sheetLoadedCallback();
};

Powered by Google App Engine
This is Rietveld 408576698