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

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

Issue 1120963003: Implements getImageAnimationPolicy() at ImageLoader. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update API name. Created 5 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 unified diff | Download patch
« no previous file with comments | « Source/core/testing/Internals.cpp ('k') | Source/platform/graphics/BitmapImage.h » ('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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 [RaisesException, TypeChecking=Interface] boolean hasSelectorForClassInShado w(Element host, DOMString className); 60 [RaisesException, TypeChecking=Interface] boolean hasSelectorForClassInShado w(Element host, DOMString className);
61 [RaisesException, TypeChecking=Interface] boolean hasSelectorForAttributeInS hadow(Element host, DOMString attributeName); 61 [RaisesException, TypeChecking=Interface] boolean hasSelectorForAttributeInS hadow(Element host, DOMString attributeName);
62 [RaisesException, TypeChecking=Interface] unsigned short compareTreeScopePos ition(Node treeScope1, Node treeScope2); 62 [RaisesException, TypeChecking=Interface] unsigned short compareTreeScopePos ition(Node treeScope1, Node treeScope2);
63 [RaisesException] unsigned long updateStyleAndReturnAffectedElementCount(); 63 [RaisesException] unsigned long updateStyleAndReturnAffectedElementCount();
64 [RaisesException] unsigned long needsLayoutCount(); 64 [RaisesException] unsigned long needsLayoutCount();
65 [RaisesException] unsigned long hitTestCount(Document document); 65 [RaisesException] unsigned long hitTestCount(Document document);
66 66
67 // CSS Animation and Transition testing. 67 // CSS Animation and Transition testing.
68 [RaisesException] void pauseAnimations(double pauseTime); 68 [RaisesException] void pauseAnimations(double pauseTime);
69 69
70 // Modifies m_desiredFrameStartTime in BitmapImage to advance the next frame time
71 // for testing whether animated images work properly.
72 [RaisesException] void advanceTimeForImage(Element image, double deltaTimeIn Seconds);
73
70 [RaisesException, TypeChecking=Interface] Node nextSiblingInComposedTree(Nod e node); 74 [RaisesException, TypeChecking=Interface] Node nextSiblingInComposedTree(Nod e node);
71 [RaisesException, TypeChecking=Interface] Node firstChildInComposedTree(Node node); 75 [RaisesException, TypeChecking=Interface] Node firstChildInComposedTree(Node node);
72 [RaisesException, TypeChecking=Interface] Node lastChildInComposedTree(Node node); 76 [RaisesException, TypeChecking=Interface] Node lastChildInComposedTree(Node node);
73 [RaisesException, TypeChecking=Interface] Node nextInComposedTree(Node node) ; 77 [RaisesException, TypeChecking=Interface] Node nextInComposedTree(Node node) ;
74 [RaisesException, TypeChecking=Interface] Node previousInComposedTree(Node n ode); 78 [RaisesException, TypeChecking=Interface] Node previousInComposedTree(Node n ode);
75 79
76 DOMString visiblePlaceholder(Element element); 80 DOMString visiblePlaceholder(Element element);
77 81
78 [TypeChecking=Interface] void selectColorInColorChooser(Element element, DOM String colorValue); 82 [TypeChecking=Interface] void selectColorInColorChooser(Element element, DOM String colorValue);
79 [TypeChecking=Interface] void endColorChooser(Element element); 83 [TypeChecking=Interface] void endColorChooser(Element element);
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
307 311
308 boolean isUseCounted(Document document, long useCounterId); 312 boolean isUseCounted(Document document, long useCounterId);
309 313
310 iterable<long>; 314 iterable<long>;
311 315
312 [Unscopeable] readonly attribute DOMString unscopeableAttribute; 316 [Unscopeable] readonly attribute DOMString unscopeableAttribute;
313 [Unscopeable] DOMString unscopeableMethod(); 317 [Unscopeable] DOMString unscopeableMethod();
314 318
315 ClientRectList focusRingRects(Element element); 319 ClientRectList focusRingRects(Element element);
316 }; 320 };
OLDNEW
« no previous file with comments | « Source/core/testing/Internals.cpp ('k') | Source/platform/graphics/BitmapImage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698