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 290 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 [RaisesException] void setNetworkConnectionInfo(DOMString type); | 301 [RaisesException] void setNetworkConnectionInfo(DOMString type); |
302 | 302 |
303 // This function is for testing HitRegions on Canvas2D. | 303 // This function is for testing HitRegions on Canvas2D. |
304 unsigned long countHitRegions(CanvasRenderingContext2D context); | 304 unsigned long countHitRegions(CanvasRenderingContext2D context); |
305 | 305 |
306 [TypeChecking=Interface] boolean isInCanvasFontCache(Document document, DOMS
tring fontString); | 306 [TypeChecking=Interface] boolean isInCanvasFontCache(Document document, DOMS
tring fontString); |
307 [TypeChecking=Interface] unsigned long canvasFontCacheMaxFonts(); | 307 [TypeChecking=Interface] unsigned long canvasFontCacheMaxFonts(); |
308 | 308 |
309 [TypeChecking=Interface] ClientRect boundsInViewportSpace(Element element); | 309 [TypeChecking=Interface] ClientRect boundsInViewportSpace(Element element); |
310 | 310 |
311 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, DocumentFragment fragment); | |
312 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, PluginPlaceholderOptions options); | |
313 | |
314 DictionaryTest dictionaryTest(); | 311 DictionaryTest dictionaryTest(); |
315 UnionTypesTest unionTypesTest(); | 312 UnionTypesTest unionTypesTest(); |
316 | 313 |
317 void forceBlinkGCWithoutV8GC(); | 314 void forceBlinkGCWithoutV8GC(); |
318 | 315 |
319 DOMString selectedHTMLForClipboard(); | 316 DOMString selectedHTMLForClipboard(); |
320 DOMString selectedTextForClipboard(); | 317 DOMString selectedTextForClipboard(); |
321 | 318 |
322 void setVisualViewportOffset(long x, long y); | 319 void setVisualViewportOffset(long x, long y); |
323 | 320 |
324 boolean isUseCounted(Document document, long useCounterId); | 321 boolean isUseCounted(Document document, long useCounterId); |
325 | 322 |
326 iterable<long>; | 323 iterable<long>; |
327 | 324 |
328 [Unscopeable] readonly attribute DOMString unscopeableAttribute; | 325 [Unscopeable] readonly attribute DOMString unscopeableAttribute; |
329 [Unscopeable] DOMString unscopeableMethod(); | 326 [Unscopeable] DOMString unscopeableMethod(); |
330 | 327 |
331 ClientRectList outlineRects(Element element); | 328 ClientRectList outlineRects(Element element); |
332 void setCapsLockState(boolean enabled); | 329 void setCapsLockState(boolean enabled); |
333 | 330 |
334 // Returns whether the scrollbar was able to be shown or hidden; not all pla
tforms | 331 // Returns whether the scrollbar was able to be shown or hidden; not all pla
tforms |
335 // support overlay scrollbars. | 332 // support overlay scrollbars. |
336 bool setScrollbarVisibilityInScrollableArea(Node node, boolean visible); | 333 bool setScrollbarVisibilityInScrollableArea(Node node, boolean visible); |
337 | 334 |
338 void forceRestrictIFramePermissions(); | 335 void forceRestrictIFramePermissions(); |
339 }; | 336 }; |
OLD | NEW |