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

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

Issue 15376006: Added window.internals.isColorChooserShown() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 7 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 | Annotate | Revision Log
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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 // FIXME: Rename these functions if walker is prefered. 116 // FIXME: Rename these functions if walker is prefered.
117 Node* nextSiblingByWalker(Node*, ExceptionCode&); 117 Node* nextSiblingByWalker(Node*, ExceptionCode&);
118 Node* firstChildByWalker(Node*, ExceptionCode&); 118 Node* firstChildByWalker(Node*, ExceptionCode&);
119 Node* lastChildByWalker(Node*, ExceptionCode&); 119 Node* lastChildByWalker(Node*, ExceptionCode&);
120 Node* nextNodeByWalker(Node*, ExceptionCode&); 120 Node* nextNodeByWalker(Node*, ExceptionCode&);
121 Node* previousNodeByWalker(Node*, ExceptionCode&); 121 Node* previousNodeByWalker(Node*, ExceptionCode&);
122 122
123 String visiblePlaceholder(Element*); 123 String visiblePlaceholder(Element*);
124 #if ENABLE(INPUT_TYPE_COLOR) 124 #if ENABLE(INPUT_TYPE_COLOR)
125 void selectColorInColorChooser(Element*, const String& colorValue); 125 void selectColorInColorChooser(Element*, const String& colorValue);
126 bool isColorChooserShown(Element*);
126 #endif 127 #endif
127 Vector<String> formControlStateOfPreviousHistoryItem(ExceptionCode&); 128 Vector<String> formControlStateOfPreviousHistoryItem(ExceptionCode&);
128 void setFormControlStateOfPreviousHistoryItem(const Vector<String>&, Excepti onCode&); 129 void setFormControlStateOfPreviousHistoryItem(const Vector<String>&, Excepti onCode&);
129 void setEnableMockPagePopup(bool, ExceptionCode&); 130 void setEnableMockPagePopup(bool, ExceptionCode&);
130 PassRefPtr<PagePopupController> pagePopupController(); 131 PassRefPtr<PagePopupController> pagePopupController();
131 132
132 PassRefPtr<ClientRect> absoluteCaretBounds(ExceptionCode&); 133 PassRefPtr<ClientRect> absoluteCaretBounds(ExceptionCode&);
133 134
134 PassRefPtr<ClientRect> boundingBox(Element*, ExceptionCode&); 135 PassRefPtr<ClientRect> boundingBox(Element*, ExceptionCode&);
135 136
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 298
298 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionCode&); 299 DocumentMarker* markerAt(Node*, const String& markerType, unsigned index, Ex ceptionCode&);
299 RefPtr<DOMWindow> m_frontendWindow; 300 RefPtr<DOMWindow> m_frontendWindow;
300 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel; 301 OwnPtr<InspectorFrontendChannelDummy> m_frontendChannel;
301 RefPtr<InternalRuntimeFlags> m_runtimeFlags; 302 RefPtr<InternalRuntimeFlags> m_runtimeFlags;
302 }; 303 };
303 304
304 } // namespace WebCore 305 } // namespace WebCore
305 306
306 #endif 307 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698