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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
80 // Advances an animated image. For BitmapImage (e.g., animated gifs) this | 80 // Advances an animated image. For BitmapImage (e.g., animated gifs) this |
81 // will advance to the next frame. For SVGImage, this will trigger an | 81 // will advance to the next frame. For SVGImage, this will trigger an |
82 // animation update for CSS and advance the SMIL timeline by one frame. | 82 // animation update for CSS and advance the SMIL timeline by one frame. |
83 [RaisesException] void advanceImageAnimation(Element image); | 83 [RaisesException] void advanceImageAnimation(Element image); |
84 | 84 |
85 [RaisesException] Node nextSiblingInComposedTree(Node node); | 85 [RaisesException] Node nextSiblingInComposedTree(Node node); |
86 [RaisesException] Node firstChildInComposedTree(Node node); | 86 [RaisesException] Node firstChildInComposedTree(Node node); |
87 [RaisesException] Node lastChildInComposedTree(Node node); | 87 [RaisesException] Node lastChildInComposedTree(Node node); |
88 [RaisesException] Node nextInComposedTree(Node node); | 88 [RaisesException] Node nextInComposedTree(Node node); |
89 [RaisesException] Node previousInComposedTree(Node node); | 89 [RaisesException] Node previousInComposedTree(Node node); |
90 [RaisesException] Node parentInComposedTree(Node node); | |
tkent
2015/12/11 04:49:37
Is this used now?
hayato
2015/12/11 04:51:08
Good point. Let me remove this before landing this
| |
90 | 91 |
91 DOMString visiblePlaceholder(Element element); | 92 DOMString visiblePlaceholder(Element element); |
92 | 93 |
93 void selectColorInColorChooser(Element element, DOMString colorValue); | 94 void selectColorInColorChooser(Element element, DOMString colorValue); |
94 void endColorChooser(Element element); | 95 void endColorChooser(Element element); |
95 | 96 |
96 // If the argument is omitted, the top-level document is used. | 97 // If the argument is omitted, the top-level document is used. |
97 boolean hasAutofocusRequest(optional Document document); | 98 boolean hasAutofocusRequest(optional Document document); |
98 [RaisesException] DOMString[] formControlStateOfHistoryItem(); | 99 [RaisesException] DOMString[] formControlStateOfHistoryItem(); |
99 [RaisesException] void setFormControlStateOfHistoryItem(sequence<DOMString> values); | 100 [RaisesException] void setFormControlStateOfHistoryItem(sequence<DOMString> values); |
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
352 bool setScrollbarVisibilityInScrollableArea(Node node, boolean visible); | 353 bool setScrollbarVisibilityInScrollableArea(Node node, boolean visible); |
353 | 354 |
354 void forceRestrictIFramePermissions(); | 355 void forceRestrictIFramePermissions(); |
355 [RaisesException] double monotonicTimeToZeroBasedDocumentTime(double platfor mTime); | 356 [RaisesException] double monotonicTimeToZeroBasedDocumentTime(double platfor mTime); |
356 | 357 |
357 void setMediaElementNetworkState(HTMLMediaElement element, long state); | 358 void setMediaElementNetworkState(HTMLMediaElement element, long state); |
358 | 359 |
359 // TODO(liberato): remove once autoplay gesture override experiment conclude s. | 360 // TODO(liberato): remove once autoplay gesture override experiment conclude s. |
360 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement); | 361 void triggerAutoplayViewportCheck(HTMLMediaElement mediaElement); |
361 }; | 362 }; |
OLD | NEW |