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 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 [TypeChecking=Interface] ClientRect boundingBox(Element element); | 92 [TypeChecking=Interface] ClientRect boundingBox(Element element); |
93 | 93 |
94 [RaisesException, TypeChecking=Interface] unsigned long markerCountForNode(N
ode node, DOMString markerType); | 94 [RaisesException, TypeChecking=Interface] unsigned long markerCountForNode(N
ode node, DOMString markerType); |
95 [TypeChecking=Interface] unsigned long activeMarkerCountForNode(Node node); | 95 [TypeChecking=Interface] unsigned long activeMarkerCountForNode(Node node); |
96 [RaisesException, TypeChecking=Interface] Range markerRangeForNode(Node node
, DOMString markerType, unsigned long index); | 96 [RaisesException, TypeChecking=Interface] Range markerRangeForNode(Node node
, DOMString markerType, unsigned long index); |
97 [RaisesException, TypeChecking=Interface] DOMString markerDescriptionForNode
(Node node, DOMString markerType, unsigned long index); | 97 [RaisesException, TypeChecking=Interface] DOMString markerDescriptionForNode
(Node node, DOMString markerType, unsigned long index); |
98 [TypeChecking=Interface] void addTextMatchMarker(Range range, boolean isActi
ve); | 98 [TypeChecking=Interface] void addTextMatchMarker(Range range, boolean isActi
ve); |
99 [TypeChecking=Interface] void setMarkersActive(Node node, unsigned long star
tOffset, unsigned long endOffset, boolean active); | 99 [TypeChecking=Interface] void setMarkersActive(Node node, unsigned long star
tOffset, unsigned long endOffset, boolean active); |
100 void setMarkedTextMatchesAreHighlighted(Document document, boolean highlight
); | 100 void setMarkedTextMatchesAreHighlighted(Document document, boolean highlight
); |
101 | 101 |
102 [RaisesException, TypeChecking=Interface] void setScrollViewPosition(Documen
t document, long x, long y); | 102 [RaisesException, TypeChecking=Interface] void setFrameViewPosition(Document
document, long x, long y); |
103 | 103 |
104 [RaisesException, TypeChecking=Interface] DOMString viewportAsText(Document
document, | 104 [RaisesException, TypeChecking=Interface] DOMString viewportAsText(Document
document, |
105 float dev
icePixelRatio, | 105 float dev
icePixelRatio, |
106 long avai
lableWidth, | 106 long avai
lableWidth, |
107 long avai
lableHeight); | 107 long avai
lableHeight); |
108 | 108 |
109 [RaisesException, TypeChecking=Interface] boolean wasLastChangeUserEdit(Elem
ent textField); | 109 [RaisesException, TypeChecking=Interface] boolean wasLastChangeUserEdit(Elem
ent textField); |
110 [RaisesException, TypeChecking=Interface] boolean elementShouldAutoComplete(
Element inputElement); | 110 [RaisesException, TypeChecking=Interface] boolean elementShouldAutoComplete(
Element inputElement); |
111 [RaisesException, TypeChecking=Interface] DOMString suggestedValue(Element i
nputElement); | 111 [RaisesException, TypeChecking=Interface] DOMString suggestedValue(Element i
nputElement); |
112 [RaisesException, TypeChecking=Interface] void setSuggestedValue(Element inp
utElement, DOMString value); | 112 [RaisesException, TypeChecking=Interface] void setSuggestedValue(Element inp
utElement, DOMString value); |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 unsigned long countHitRegions(CanvasRenderingContext2D context); | 279 unsigned long countHitRegions(CanvasRenderingContext2D context); |
280 | 280 |
281 DOMString serializeNavigationMarkup(); | 281 DOMString serializeNavigationMarkup(); |
282 void hideAllTransitionElements(); | 282 void hideAllTransitionElements(); |
283 | 283 |
284 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, DocumentFragment fragment); | 284 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, DocumentFragment fragment); |
285 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, Dictionary options); | 285 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, Dictionary options); |
286 | 286 |
287 DictionaryTest dictionaryTest(); | 287 DictionaryTest dictionaryTest(); |
288 }; | 288 }; |
OLD | NEW |