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

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

Issue 2606633002: encrypted-media tests should not count # of SuspendableObjects (Closed)
Patch Set: temp Created 3 years, 12 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
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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 [RaisesException] DOMPoint touchPositionAdjustedToBestContextMenuNode(long x , long y, long width, long height, Document document); 138 [RaisesException] DOMPoint touchPositionAdjustedToBestContextMenuNode(long x , long y, long width, long height, Document document);
139 [RaisesException] Node touchNodeAdjustedToBestContextMenuNode(long x, long y , long width, long height, Document document); 139 [RaisesException] Node touchNodeAdjustedToBestContextMenuNode(long x, long y , long width, long height, Document document);
140 [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, l ong width, long height, Document document); 140 [RaisesException] ClientRect bestZoomableAreaForTouchPoint(long x, long y, l ong width, long height, Document document);
141 141
142 [RaisesException] long lastSpellCheckRequestSequence(Document document); 142 [RaisesException] long lastSpellCheckRequestSequence(Document document);
143 [RaisesException] long lastSpellCheckProcessedSequence(Document document); 143 [RaisesException] long lastSpellCheckProcessedSequence(Document document);
144 144
145 sequence<DOMString> userPreferredLanguages(); 145 sequence<DOMString> userPreferredLanguages();
146 void setUserPreferredLanguages(sequence<DOMString> languages); 146 void setUserPreferredLanguages(sequence<DOMString> languages);
147 147
148 unsigned long mediaKeysCount();
149 unsigned long mediaKeySessionCount();
148 unsigned long suspendableObjectCount(Document document); 150 unsigned long suspendableObjectCount(Document document);
149 unsigned long wheelEventHandlerCount(Document document); 151 unsigned long wheelEventHandlerCount(Document document);
150 unsigned long scrollEventHandlerCount(Document document); 152 unsigned long scrollEventHandlerCount(Document document);
151 unsigned long touchStartOrMoveEventHandlerCount(Document document); 153 unsigned long touchStartOrMoveEventHandlerCount(Document document);
152 unsigned long touchEndOrCancelEventHandlerCount(Document document); 154 unsigned long touchEndOrCancelEventHandlerCount(Document document);
153 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document ); 155 [RaisesException] LayerRectList touchEventTargetLayerRects(Document document );
154 156
155 [RaisesException] boolean executeCommand(Document document, DOMString name, DOMString value); 157 [RaisesException] boolean executeCommand(Document document, DOMString name, DOMString value);
156 158
157 DOMString htmlNamespace(); 159 DOMString htmlNamespace();
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 DOMString getProgrammaticScrollAnimationState(Node node); 355 DOMString getProgrammaticScrollAnimationState(Node node);
354 356
355 ClientRect visualRect(Node node); 357 ClientRect visualRect(Node node);
356 358
357 OriginTrialsTest originTrialsTest(); 359 OriginTrialsTest originTrialsTest();
358 360
359 void crash(); 361 void crash();
360 362
361 void setIsLowEndDevice(boolean isLowEndDevice); 363 void setIsLowEndDevice(boolean isLowEndDevice);
362 }; 364 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698