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

Unified Diff: testing/Internals.idl

Issue 12893011: Update idl files in third_party/WebCore (Closed) Base URL: https://dart.googlecode.com/svn/third_party/WebCore
Patch Set: Created 7 years, 9 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: testing/Internals.idl
diff --git a/testing/Internals.idl b/testing/Internals.idl
index 58bd3c121d8f70fbaf11b2471f39a131d7c5d6d3..461afe583a426fc01632306d2dc1b339262d2f18 100644
--- a/testing/Internals.idl
+++ b/testing/Internals.idl
@@ -104,8 +104,6 @@
ClientRectList inspectorHighlightRects(in Document document) raises (DOMException);
- void setBackgroundBlurOnNode(in Node node, in long blurLength) raises(DOMException);
-
unsigned long markerCountForNode(in Node node, in DOMString markerType) raises(DOMException);
Range markerRangeForNode(in Node node, in DOMString markerType, in unsigned long index) raises(DOMException);
DOMString markerDescriptionForNode(in Node node, in DOMString markerType, in unsigned long index) raises(DOMException);
@@ -123,6 +121,7 @@
in long availableHeight) raises(DOMException);
boolean wasLastChangeUserEdit(in Element textField) raises (DOMException);
+ boolean elementShouldAutoComplete(in Element inputElement) raises (DOMException);
DOMString suggestedValue(in Element inputElement) raises (DOMException);
void setSuggestedValue(in Element inputElement, in DOMString value) raises (DOMException);
void setEditingValue(in Element inputElement, in DOMString value) raises (DOMException);
@@ -180,6 +179,7 @@
const unsigned short LAYER_TREE_INCLUDES_VISIBLE_RECTS = 1;
const unsigned short LAYER_TREE_INCLUDES_TILE_CACHES = 2;
const unsigned short LAYER_TREE_INCLUDES_REPAINT_RECTS = 4;
+ const unsigned short LAYER_TREE_INCLUDES_PAINTING_PHASES = 8;
DOMString layerTreeAsText(in Document document, in [Optional] unsigned short flags) raises (DOMException);
DOMString scrollingStateTreeAsText(in Document document) raises (DOMException);
@@ -217,7 +217,8 @@
DOMString counterValue(in Element element);
long pageNumber(in Element element, in [Optional] float pageWidth, in [Optional] float pageHeight);
- DOMString[] iconURLs(in Document document);
+ DOMString[] shortcutIconURLs(in Document document);
+ DOMString[] allIconURLs(in Document document);
long numberOfPages(in [Optional] double pageWidthInPixels, in [Optional] double pageHeightInPixels);
DOMString pageProperty(in DOMString propertyName, in long pageNumber) raises (DOMException);
DOMString pageSizeAndMarginsInPixels(in long pageIndex, in long width, in long height, in long marginTop, in long marginRight, in long marginBottom, in long marginLeft) raises (DOMException);
@@ -254,7 +255,13 @@
void setUsesOverlayScrollbars(in boolean enabled);
+ void forceReload(in boolean endToEnd);
+
+ [Conditional=VIDEO] void simulateAudioInterruption(in Node node);
+
[Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM();
[Conditional=SPEECH_SYNTHESIS] void enableMockSpeechSynthesizer();
+
+ DOMString getImageSourceURL(in Element element) raises(DOMException);
};

Powered by Google App Engine
This is Rietveld 408576698