| 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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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); | 311 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, DocumentFragment fragment); |
| 312 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, PluginPlaceholderOptions options); | 312 [RaisesException, TypeChecking=Interface] void forcePluginPlaceholder(HTMLEl
ement plugin, PluginPlaceholderOptions options); |
| 313 | 313 |
| 314 DictionaryTest dictionaryTest(); | 314 DictionaryTest dictionaryTest(); |
| 315 UnionTypesTest unionTypesTest(); | 315 UnionTypesTest unionTypesTest(); |
| 316 | 316 [RaisesException, TypeChecking=Interface] void setScrollChain(ScrollState sc
rollState, Element[] elements); |
| 317 void forceBlinkGCWithoutV8GC(); | 317 void forceBlinkGCWithoutV8GC(); |
| 318 | 318 |
| 319 DOMString selectedHTMLForClipboard(); | 319 DOMString selectedHTMLForClipboard(); |
| 320 DOMString selectedTextForClipboard(); | 320 DOMString selectedTextForClipboard(); |
| 321 | 321 |
| 322 void setVisualViewportOffset(long x, long y); | 322 void setVisualViewportOffset(long x, long y); |
| 323 | 323 |
| 324 boolean isUseCounted(Document document, long useCounterId); | 324 boolean isUseCounted(Document document, long useCounterId); |
| 325 | 325 |
| 326 iterable<long>; | 326 iterable<long>; |
| 327 | 327 |
| 328 [Unscopeable] readonly attribute DOMString unscopeableAttribute; | 328 [Unscopeable] readonly attribute DOMString unscopeableAttribute; |
| 329 [Unscopeable] DOMString unscopeableMethod(); | 329 [Unscopeable] DOMString unscopeableMethod(); |
| 330 | 330 |
| 331 ClientRectList outlineRects(Element element); | 331 ClientRectList outlineRects(Element element); |
| 332 void setCapsLockState(boolean enabled); | 332 void setCapsLockState(boolean enabled); |
| 333 | 333 |
| 334 // Returns whether the scrollbar was able to be shown or hidden; not all pla
tforms | 334 // Returns whether the scrollbar was able to be shown or hidden; not all pla
tforms |
| 335 // support overlay scrollbars. | 335 // support overlay scrollbars. |
| 336 bool setScrollbarVisibilityInScrollableArea(Node node, boolean visible); | 336 bool setScrollbarVisibilityInScrollableArea(Node node, boolean visible); |
| 337 | 337 |
| 338 void forceRestrictIFramePermissions(); | 338 void forceRestrictIFramePermissions(); |
| 339 }; | 339 }; |
| OLD | NEW |