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

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

Issue 2956023004: Add a flag to update hover effect when a layout is changed (Closed)
Patch Set: hover layout 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 405 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 PassRefPtr<SerializedScriptValue> deserializeBuffer(DOMArrayBuffer*) const; 416 PassRefPtr<SerializedScriptValue> deserializeBuffer(DOMArrayBuffer*) const;
417 417
418 DOMArrayBuffer* serializeWithInlineWasm(ScriptValue) const; 418 DOMArrayBuffer* serializeWithInlineWasm(ScriptValue) const;
419 ScriptValue deserializeBufferContainingWasm(ScriptState*, 419 ScriptValue deserializeBufferContainingWasm(ScriptState*,
420 DOMArrayBuffer*) const; 420 DOMArrayBuffer*) const;
421 421
422 String getCurrentCursorInfo(); 422 String getCurrentCursorInfo();
423 423
424 bool cursorUpdatePending() const; 424 bool cursorUpdatePending() const;
425 425
426 bool fakeMouseMovePending() const;
427
426 String markerTextForListItem(Element*); 428 String markerTextForListItem(Element*);
427 429
428 void forceReload(bool bypass_cache); 430 void forceReload(bool bypass_cache);
429 431
430 String getImageSourceURL(Element*); 432 String getImageSourceURL(Element*);
431 void forceImageReload(Element*, ExceptionState&); 433 void forceImageReload(Element*, ExceptionState&);
432 434
433 String selectMenuListText(HTMLSelectElement*); 435 String selectMenuListText(HTMLSelectElement*);
434 bool isSelectPopupVisible(Node*); 436 bool isSelectPopupVisible(Node*);
435 bool selectPopupItemStyleIsRtl(Node*, int); 437 bool selectPopupItemStyleIsRtl(Node*, int);
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 const String& marker_type, 577 const String& marker_type,
576 unsigned index, 578 unsigned index,
577 ExceptionState&); 579 ExceptionState&);
578 Member<InternalRuntimeFlags> runtime_flags_; 580 Member<InternalRuntimeFlags> runtime_flags_;
579 Member<Document> document_; 581 Member<Document> document_;
580 }; 582 };
581 583
582 } // namespace blink 584 } // namespace blink
583 585
584 #endif // Internals_h 586 #endif // Internals_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698