| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> | 3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 | 234 |
| 235 readonly attribute DOMString compatMode; | 235 readonly attribute DOMString compatMode; |
| 236 | 236 |
| 237 // NodeSelector - Selector API | 237 // NodeSelector - Selector API |
| 238 Element querySelector(in DOMString selectors) | 238 Element querySelector(in DOMString selectors) |
| 239 raises(DOMException); | 239 raises(DOMException); |
| 240 NodeList querySelectorAll(in DOMString selectors) | 240 NodeList querySelectorAll(in DOMString selectors) |
| 241 raises(DOMException); | 241 raises(DOMException); |
| 242 | 242 |
| 243 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API | 243 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API |
| 244 // Mozilla version | |
| 245 readonly attribute [V8EnabledAtRuntime] boolean webkitIsFullScreen; | 244 readonly attribute [V8EnabledAtRuntime] boolean webkitIsFullScreen; |
| 246 readonly attribute [V8EnabledAtRuntime] boolean webkitFullScreenKeyboard
InputAllowed; | 245 readonly attribute [V8EnabledAtRuntime] boolean webkitFullScreenKeyboard
InputAllowed; |
| 247 readonly attribute [V8EnabledAtRuntime] Element webkitCurrentFullScreenE
lement; | 246 readonly attribute [V8EnabledAtRuntime] Element webkitCurrentFullScreenE
lement; |
| 248 [V8EnabledAtRuntime] void webkitCancelFullScreen(); | 247 [V8EnabledAtRuntime] void webkitCancelFullScreen(); |
| 249 | |
| 250 // W3C version | |
| 251 readonly attribute [V8EnabledAtRuntime] boolean webkitFullscreenEnabled; | |
| 252 readonly attribute [V8EnabledAtRuntime] Element webkitFullscreenElement; | |
| 253 [V8EnabledAtRuntime] void webkitExitFullscreen(); | |
| 254 #endif | 248 #endif |
| 255 | 249 |
| 256 WebKitNamedFlow webkitGetFlowByName(in DOMString name); | 250 WebKitNamedFlow webkitGetFlowByName(in DOMString name); |
| 257 | 251 |
| 258 #if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C | 252 #if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C |
| 259 // Event handler DOM attributes | 253 // Event handler DOM attributes |
| 260 attribute [NotEnumerable] EventListener onabort; | 254 attribute [NotEnumerable] EventListener onabort; |
| 261 attribute [NotEnumerable] EventListener onblur; | 255 attribute [NotEnumerable] EventListener onblur; |
| 262 attribute [NotEnumerable] EventListener onchange; | 256 attribute [NotEnumerable] EventListener onchange; |
| 263 attribute [NotEnumerable] EventListener onclick; | 257 attribute [NotEnumerable] EventListener onclick; |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 boolean isHTMLDocument(); | 346 boolean isHTMLDocument(); |
| 353 #endif | 347 #endif |
| 354 | 348 |
| 355 // Page visibility API. | 349 // Page visibility API. |
| 356 readonly attribute [Conditional=PAGE_VISIBILITY_API] DOMString webkitVis
ibilityState; | 350 readonly attribute [Conditional=PAGE_VISIBILITY_API] DOMString webkitVis
ibilityState; |
| 357 readonly attribute [Conditional=PAGE_VISIBILITY_API] boolean webkitHidde
n; | 351 readonly attribute [Conditional=PAGE_VISIBILITY_API] boolean webkitHidde
n; |
| 358 | 352 |
| 359 }; | 353 }; |
| 360 | 354 |
| 361 } | 355 } |
| OLD | NEW |