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

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: add hover flag 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 403 matching lines...) Expand 10 before | Expand all | Expand 10 after
414 PassRefPtr<SerializedScriptValue> deserializeBuffer(DOMArrayBuffer*) const; 414 PassRefPtr<SerializedScriptValue> deserializeBuffer(DOMArrayBuffer*) const;
415 415
416 DOMArrayBuffer* serializeWithInlineWasm(ScriptValue) const; 416 DOMArrayBuffer* serializeWithInlineWasm(ScriptValue) const;
417 ScriptValue deserializeBufferContainingWasm(ScriptState*, 417 ScriptValue deserializeBufferContainingWasm(ScriptState*,
418 DOMArrayBuffer*) const; 418 DOMArrayBuffer*) const;
419 419
420 String getCurrentCursorInfo(); 420 String getCurrentCursorInfo();
421 421
422 bool cursorUpdatePending() const; 422 bool cursorUpdatePending() const;
423 423
424 bool fakeMouseMovePending() const;
425
424 String markerTextForListItem(Element*); 426 String markerTextForListItem(Element*);
425 427
426 void forceReload(bool bypass_cache); 428 void forceReload(bool bypass_cache);
427 429
428 String getImageSourceURL(Element*); 430 String getImageSourceURL(Element*);
429 void forceImageReload(Element*, ExceptionState&); 431 void forceImageReload(Element*, ExceptionState&);
430 432
431 String selectMenuListText(HTMLSelectElement*); 433 String selectMenuListText(HTMLSelectElement*);
432 bool isSelectPopupVisible(Node*); 434 bool isSelectPopupVisible(Node*);
433 bool selectPopupItemStyleIsRtl(Node*, int); 435 bool selectPopupItemStyleIsRtl(Node*, int);
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 const String& marker_type, 579 const String& marker_type,
578 unsigned index, 580 unsigned index,
579 ExceptionState&); 581 ExceptionState&);
580 Member<InternalRuntimeFlags> runtime_flags_; 582 Member<InternalRuntimeFlags> runtime_flags_;
581 Member<Document> document_; 583 Member<Document> document_;
582 }; 584 };
583 585
584 } // namespace blink 586 } // namespace blink
585 587
586 #endif // Internals_h 588 #endif // Internals_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698