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

Unified Diff: third_party/WebCore/testing/Internals.idl

Issue 10590003: Roll IDL to multivm@615 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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
« no previous file with comments | « third_party/WebCore/page/Navigator.idl ('k') | third_party/WebCore/xml/XMLHttpRequest.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebCore/testing/Internals.idl
diff --git a/third_party/WebCore/testing/Internals.idl b/third_party/WebCore/testing/Internals.idl
index aa10858bb3d666af4fc05dbee8a44076adf86040..8191d5fd0b8232bc6df101de81e5a9b7593130c9 100644
--- a/third_party/WebCore/testing/Internals.idl
+++ b/third_party/WebCore/testing/Internals.idl
@@ -34,7 +34,7 @@ module window {
unsigned long numberOfScopedHTMLStyleChildren(in Node scope) raises(DOMException);
-#if defined(ENABLE_SHADOW_DOM)
+#if defined(ENABLE_SHADOW_DOM) && ENABLE_SHADOW_DOM
ShadowRoot ensureShadowRoot(in Element host) raises (DOMException);
ShadowRoot shadowRoot(in Element host) raises (DOMException);
ShadowRoot youngestShadowRoot(in Element host) raises (DOMException);
@@ -50,6 +50,7 @@ module window {
#endif
Element includerFor(in Node node) raises (DOMException);
DOMString shadowPseudoId(in Element element) raises (DOMException);
+ void setShadowPseudoId(in Element element, in DOMString id) raises (DOMException);
Element createContentElement(in Document document) raises(DOMException);
Element getElementByIdInShadowRoot(in Node shadowRoot, in DOMString id) raises(DOMException);
boolean isValidContentSelect(in Element contentElement) raises(DOMException);
@@ -67,6 +68,8 @@ module window {
#if defined(ENABLE_INPUT_TYPE_COLOR) && ENABLE_INPUT_TYPE_COLOR
void selectColorInColorChooser(in Element element, in DOMString colorValue);
#endif
+ DOMString[] formControlStateOfPreviousHistoryItem() raises(DOMException);
+ void setFormControlStateOfPreviousHistoryItem(in DOMString[] values) raises(DOMException);
ClientRect absoluteCaretBounds(in Document document) raises(DOMException);
@@ -113,7 +116,8 @@ module window {
boolean shouldDisplayTrackKind(in Document document, in DOMString trackKind) raises (DOMException);
#endif
- attribute sequence<String> userPreferredLanguages;
+ sequence<String> userPreferredLanguages();
+ void setUserPreferredLanguages(in sequence<String> languages);
unsigned long wheelEventHandlerCount(in Document document) raises (DOMException);
unsigned long touchEventHandlerCount(in Document document) raises (DOMException);
@@ -151,6 +155,8 @@ module window {
[Conditional=INSPECTOR] unsigned long numberOfLiveDocuments();
[Conditional=INSPECTOR] sequence<String> consoleMessageArgumentCounts(in Document document);
+ DOMString counterValue(in Element element);
+
#if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API
void webkitWillEnterFullScreenForElement(in Document document, in Element element);
void webkitDidEnterFullScreenForElement(in Document document, in Element element);
« no previous file with comments | « third_party/WebCore/page/Navigator.idl ('k') | third_party/WebCore/xml/XMLHttpRequest.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698