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

Side by Side Diff: Source/core/testing/Internals.idl

Issue 1140153006: Remove Navigation Transitions from Blink. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Removed layout tests. Created 5 years, 7 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
« no previous file with comments | « Source/core/testing/Internals.cpp ('k') | Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
228 [RaisesException, TypeChecking=Interface] void forceFullRepaint(Document doc ument); 228 [RaisesException, TypeChecking=Interface] void forceFullRepaint(Document doc ument);
229 229
230 // Returns a list of draggable/non-draggable regions in the document. 230 // Returns a list of draggable/non-draggable regions in the document.
231 [RaisesException, TypeChecking=Interface] ClientRectList draggableRegions(Do cument document); 231 [RaisesException, TypeChecking=Interface] ClientRectList draggableRegions(Do cument document);
232 [RaisesException, TypeChecking=Interface] ClientRectList nonDraggableRegions (Document document); 232 [RaisesException, TypeChecking=Interface] ClientRectList nonDraggableRegions (Document document);
233 233
234 // Returns a string with information about the mouse cursor used at the spec ified client location. 234 // Returns a string with information about the mouse cursor used at the spec ified client location.
235 [TypeChecking=Interface] DOMString getCurrentCursorInfo(); 235 [TypeChecking=Interface] DOMString getCurrentCursorInfo();
236 236
237 readonly attribute boolean cursorUpdatePending; 237 readonly attribute boolean cursorUpdatePending;
238 238
239 [TypeChecking=Interface] DOMString markerTextForListItem(Element element); 239 [TypeChecking=Interface] DOMString markerTextForListItem(Element element);
240 240
241 SerializedScriptValue deserializeBuffer(ArrayBuffer buffer); 241 SerializedScriptValue deserializeBuffer(ArrayBuffer buffer);
242 ArrayBuffer serializeObject(SerializedScriptValue obj); 242 ArrayBuffer serializeObject(SerializedScriptValue obj);
243 243
244 void forceReload(boolean endToEnd); 244 void forceReload(boolean endToEnd);
245 245
246 [TypeChecking=Interface] DOMString getImageSourceURL(Element element); 246 [TypeChecking=Interface] DOMString getImageSourceURL(Element element);
247 247
248 [TypeChecking=Interface] DOMString selectMenuListText(HTMLSelectElement sele ct); 248 [TypeChecking=Interface] DOMString selectMenuListText(HTMLSelectElement sele ct);
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 281
282 // These functions are for testing NetInfo. You must call setNetworkStateNot ifierTestOnly(true) 282 // These functions are for testing NetInfo. You must call setNetworkStateNot ifierTestOnly(true)
283 // before calling setNetworkConnectionInfo. 283 // before calling setNetworkConnectionInfo.
284 void setNetworkStateNotifierTestOnly(boolean testOnly); 284 void setNetworkStateNotifierTestOnly(boolean testOnly);
285 [RaisesException] void setNetworkConnectionInfo(DOMString type); 285 [RaisesException] void setNetworkConnectionInfo(DOMString type);
286 286
287 // This function is for testing HitRegions on Canvas2D. 287 // This function is for testing HitRegions on Canvas2D.
288 unsigned long countHitRegions(CanvasRenderingContext2D context); 288 unsigned long countHitRegions(CanvasRenderingContext2D context);
289 289
290 [TypeChecking=Interface] ClientRect boundsInViewportSpace(Element element); 290 [TypeChecking=Interface] ClientRect boundsInViewportSpace(Element element);
291 DOMString serializeNavigationMarkup();
292 DOMString[] getTransitionElementIds();
293 ClientRectList getTransitionElementRects();
294 void hideAllTransitionElements();
295 void showAllTransitionElements();
296 void setExitTransitionStylesheetsEnabled(boolean enabled);
297 291
298 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl ement plugin, DocumentFragment fragment); 292 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl ement plugin, DocumentFragment fragment);
299 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl ement plugin, PluginPlaceholderOptions options); 293 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl ement plugin, PluginPlaceholderOptions options);
300 294
301 DictionaryTest dictionaryTest(); 295 DictionaryTest dictionaryTest();
302 UnionTypesTest unionTypesTest(); 296 UnionTypesTest unionTypesTest();
303 297
304 void forceBlinkGCWithoutV8GC(); 298 void forceBlinkGCWithoutV8GC();
305 299
306 DOMString selectedHTMLForClipboard(); 300 DOMString selectedHTMLForClipboard();
307 DOMString selectedTextForClipboard(); 301 DOMString selectedTextForClipboard();
308 302
309 void setVisualViewportOffset(long x, long y); 303 void setVisualViewportOffset(long x, long y);
310 304
311 boolean isUseCounted(Document document, long useCounterId); 305 boolean isUseCounted(Document document, long useCounterId);
312 306
313 iterable<long>; 307 iterable<long>;
314 308
315 [Unscopeable] readonly attribute DOMString unscopeableAttribute; 309 [Unscopeable] readonly attribute DOMString unscopeableAttribute;
316 [Unscopeable] DOMString unscopeableMethod(); 310 [Unscopeable] DOMString unscopeableMethod();
317 311
318 ClientRectList focusRingRects(Element element); 312 ClientRectList focusRingRects(Element element);
319 }; 313 };
OLDNEW
« no previous file with comments | « Source/core/testing/Internals.cpp ('k') | Source/platform/RuntimeEnabledFeatures.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698