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

Side by Side Diff: third_party/WebCore/testing/Internals.idl

Issue 10800016: Roll IDL to multivm@707 (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 void setBackgroundBlurOnNode(in Node node, in long blurLength) raises(DO MException); 81 void setBackgroundBlurOnNode(in Node node, in long blurLength) raises(DO MException);
82 82
83 unsigned long markerCountForNode(in Node node, in DOMString markerType) raises(DOMException); 83 unsigned long markerCountForNode(in Node node, in DOMString markerType) raises(DOMException);
84 Range markerRangeForNode(in Node node, in DOMString markerType, in unsig ned long index) raises(DOMException); 84 Range markerRangeForNode(in Node node, in DOMString markerType, in unsig ned long index) raises(DOMException);
85 DOMString markerDescriptionForNode(in Node node, in DOMString markerType , in unsigned long index) raises(DOMException); 85 DOMString markerDescriptionForNode(in Node node, in DOMString markerType , in unsigned long index) raises(DOMException);
86 86
87 void setScrollViewPosition(in Document document, in long x, in long y) r aises(DOMException); 87 void setScrollViewPosition(in Document document, in long x, in long y) r aises(DOMException);
88 88
89 void setPagination(in Document document, in DOMString mode, in long gap) raises(DOMException); 89 void setPagination(in Document document, in DOMString mode, in long gap) raises(DOMException);
90 90
91 DOMString configurationForViewport(in Document document,
92 in float devicePixelRatio,
93 in long deviceWidth,
94 in long deviceHeight,
95 in long availableWidth,
96 in long availableHeight) raises(DOMEx ception);
97
91 boolean wasLastChangeUserEdit(in Element textField) raises (DOMException ); 98 boolean wasLastChangeUserEdit(in Element textField) raises (DOMException );
92 DOMString suggestedValue(in Element inputElement) raises (DOMException); 99 DOMString suggestedValue(in Element inputElement) raises (DOMException);
93 void setSuggestedValue(in Element inputElement, in DOMString value) rais es (DOMException); 100 void setSuggestedValue(in Element inputElement, in DOMString value) rais es (DOMException);
94 void setEditingValue(in Element inputElement, in DOMString value) raises (DOMException); 101 void setEditingValue(in Element inputElement, in DOMString value) raises (DOMException);
95 102
96 void paintControlTints(in Document document) raises (DOMException); 103 void paintControlTints(in Document document) raises (DOMException);
97 104
98 void scrollElementToRect(in Element element, in long x, in long y, in lo ng w, in long h) raises (DOMException); 105 void scrollElementToRect(in Element element, in long x, in long y, in lo ng w, in long h) raises (DOMException);
99 106
100 Range rangeFromLocationAndLength(in Element scope, in long rangeLocation , in long rangeLength) raises (DOMException); 107 Range rangeFromLocationAndLength(in Element scope, in long rangeLocation , in long rangeLength) raises (DOMException);
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 void webkitDidEnterFullScreenForElement(in Document document, in Element element); 171 void webkitDidEnterFullScreenForElement(in Document document, in Element element);
165 void webkitWillExitFullScreenForElement(in Document document, in Element element); 172 void webkitWillExitFullScreenForElement(in Document document, in Element element);
166 void webkitDidExitFullScreenForElement(in Document document, in Element element); 173 void webkitDidExitFullScreenForElement(in Document document, in Element element);
167 #endif 174 #endif
168 175
169 void registerURLSchemeAsBypassingContentSecurityPolicy(in DOMString sche me); 176 void registerURLSchemeAsBypassingContentSecurityPolicy(in DOMString sche me);
170 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(in DOMStr ing scheme); 177 void removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(in DOMStr ing scheme);
171 }; 178 };
172 } 179 }
173 180
OLDNEW
« no previous file with comments | « third_party/WebCore/testing/InternalSettings.idl ('k') | third_party/WebCore/xml/XMLHttpRequest.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698