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

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

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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 [RaisesException] Node firstChildByWalker(Node node); 70 [RaisesException] Node firstChildByWalker(Node node);
71 [RaisesException] Node lastChildByWalker(Node node); 71 [RaisesException] Node lastChildByWalker(Node node);
72 [RaisesException] Node nextNodeByWalker(Node node); 72 [RaisesException] Node nextNodeByWalker(Node node);
73 [RaisesException] Node previousNodeByWalker(Node node); 73 [RaisesException] Node previousNodeByWalker(Node node);
74 74
75 [RaisesException] boolean attached(Node node); 75 [RaisesException] boolean attached(Node node);
76 76
77 DOMString visiblePlaceholder(Element element); 77 DOMString visiblePlaceholder(Element element);
78 #if defined(ENABLE_INPUT_TYPE_COLOR) && ENABLE_INPUT_TYPE_COLOR 78 #if defined(ENABLE_INPUT_TYPE_COLOR) && ENABLE_INPUT_TYPE_COLOR
79 void selectColorInColorChooser(Element element, DOMString colorValue); 79 void selectColorInColorChooser(Element element, DOMString colorValue);
80 boolean isColorChooserShown(Element element);
tkent 2013/05/21 05:20:43 I don't think this should belong to Internals. Te
Hajime Morrita 2013/05/21 06:11:23 OK, I'll move this to TestRunner.
80 #endif 81 #endif
81 [RaisesException] DOMString[] formControlStateOfPreviousHistoryItem(); 82 [RaisesException] DOMString[] formControlStateOfPreviousHistoryItem();
82 [RaisesException] void setFormControlStateOfPreviousHistoryItem(sequence<DOM String> values); 83 [RaisesException] void setFormControlStateOfPreviousHistoryItem(sequence<DOM String> values);
83 [RaisesException] void setEnableMockPagePopup(boolean enabled); 84 [RaisesException] void setEnableMockPagePopup(boolean enabled);
84 readonly attribute PagePopupController pagePopupController; 85 readonly attribute PagePopupController pagePopupController;
85 86
86 [RaisesException] ClientRect absoluteCaretBounds(); 87 [RaisesException] ClientRect absoluteCaretBounds();
87 88
88 [RaisesException] ClientRect boundingBox(Element element); 89 [RaisesException] ClientRect boundingBox(Element element);
89 90
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 void forceReload(boolean endToEnd); 239 void forceReload(boolean endToEnd);
239 240
240 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM(); 241 [Conditional=ENCRYPTED_MEDIA_V2] void initializeMockCDM();
241 242
242 void enableMockSpeechSynthesizer(); 243 void enableMockSpeechSynthesizer();
243 244
244 [RaisesException] DOMString getImageSourceURL(Element element); 245 [RaisesException] DOMString getImageSourceURL(Element element);
245 246
246 boolean isSelectPopupVisible(Node node); 247 boolean isSelectPopupVisible(Node node);
247 }; 248 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698