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

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

Issue 2956023004: Add a flag to update hover effect when a layout is changed (Closed)
Patch Set: Remove pause in test Created 3 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
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 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 [RaisesException] void forceFullRepaint(Document document); 259 [RaisesException] void forceFullRepaint(Document document);
260 260
261 // Returns a list of draggable/non-draggable regions in the document. 261 // Returns a list of draggable/non-draggable regions in the document.
262 [RaisesException] ClientRectList draggableRegions(Document document); 262 [RaisesException] ClientRectList draggableRegions(Document document);
263 [RaisesException] ClientRectList nonDraggableRegions(Document document); 263 [RaisesException] ClientRectList nonDraggableRegions(Document document);
264 264
265 // Returns a string with information about the mouse cursor used at the spec ified client location. 265 // Returns a string with information about the mouse cursor used at the spec ified client location.
266 DOMString getCurrentCursorInfo(); 266 DOMString getCurrentCursorInfo();
267 267
268 readonly attribute boolean cursorUpdatePending; 268 readonly attribute boolean cursorUpdatePending;
269 readonly attribute boolean fakeMouseMovePending;
269 270
270 DOMString markerTextForListItem(Element element); 271 DOMString markerTextForListItem(Element element);
271 272
272 SerializedScriptValue deserializeBuffer(ArrayBuffer buffer); 273 SerializedScriptValue deserializeBuffer(ArrayBuffer buffer);
273 ArrayBuffer serializeObject(SerializedScriptValue obj); 274 ArrayBuffer serializeObject(SerializedScriptValue obj);
274 275
275 [CallWith=ScriptState] any deserializeBufferContainingWasm(ArrayBuffer buffe r); 276 [CallWith=ScriptState] any deserializeBufferContainingWasm(ArrayBuffer buffe r);
276 ArrayBuffer serializeWithInlineWasm(any obj); 277 ArrayBuffer serializeWithInlineWasm(any obj);
277 278
278 279
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 DOMString getProgrammaticScrollAnimationState(Node node); 387 DOMString getProgrammaticScrollAnimationState(Node node);
387 388
388 ClientRect visualRect(Node node); 389 ClientRect visualRect(Node node);
389 390
390 OriginTrialsTest originTrialsTest(); 391 OriginTrialsTest originTrialsTest();
391 392
392 void crash(); 393 void crash();
393 394
394 void setIsLowEndDevice(boolean isLowEndDevice); 395 void setIsLowEndDevice(boolean isLowEndDevice);
395 }; 396 };
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/testing/Internals.cpp ('k') | third_party/WebKit/Source/platform/RuntimeEnabledFeatures.json5 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698