OLD | NEW |
---|---|
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 Loading... | |
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 Loading... | |
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 }; |
OLD | NEW |