| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2011 Google Inc. All rights reserved. | 3 * Copyright (C) 2011 Google 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 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
| (...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT | 313 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT |
| 314 // Global constructors | 314 // Global constructors |
| 315 attribute StyleSheetConstructor StyleSheet; | 315 attribute StyleSheetConstructor StyleSheet; |
| 316 attribute CSSStyleSheetConstructor CSSStyleSheet; | 316 attribute CSSStyleSheetConstructor CSSStyleSheet; |
| 317 | 317 |
| 318 attribute CSSValueConstructor CSSValue; | 318 attribute CSSValueConstructor CSSValue; |
| 319 attribute CSSPrimitiveValueConstructor CSSPrimitiveValue; | 319 attribute CSSPrimitiveValueConstructor CSSPrimitiveValue; |
| 320 attribute CSSValueListConstructor CSSValueList; | 320 attribute CSSValueListConstructor CSSValueList; |
| 321 attribute WebKitCSSTransformValueConstructor WebKitCSSTransformValue; | 321 attribute WebKitCSSTransformValueConstructor WebKitCSSTransformValue; |
| 322 | 322 |
| 323 #if defined(ENABLE_CSS_SHADERS) && ENABLE_CSS_SHADERS | |
| 324 attribute WebKitCSSFilterRuleConstructor WebKitCSSFilterRule; | 323 attribute WebKitCSSFilterRuleConstructor WebKitCSSFilterRule; |
| 325 attribute WebKitCSSMixFunctionValueConstructor WebKitCSSMixFunctionValue; | 324 attribute WebKitCSSMixFunctionValueConstructor WebKitCSSMixFunctionValue; |
| 326 #endif | |
| 327 | 325 |
| 328 #if defined(ENABLE_CSS_FILTERS) && ENABLE_CSS_FILTERS | 326 #if defined(ENABLE_CSS_FILTERS) && ENABLE_CSS_FILTERS |
| 329 attribute WebKitCSSFilterValueConstructor WebKitCSSFilterValue; | 327 attribute WebKitCSSFilterValueConstructor WebKitCSSFilterValue; |
| 330 #endif | 328 #endif |
| 331 | 329 |
| 332 #if defined(ENABLE_CSS_DEVICE_ADAPTATION) && ENABLE_CSS_DEVICE_ADAPTATION | 330 #if defined(ENABLE_CSS_DEVICE_ADAPTATION) && ENABLE_CSS_DEVICE_ADAPTATION |
| 333 attribute WebKitCSSViewportRuleConstructor WebKitCSSViewportRule; | 331 attribute WebKitCSSViewportRuleConstructor WebKitCSSViewportRule; |
| 334 #endif | 332 #endif |
| 335 | 333 |
| 336 attribute CSSRuleConstructor CSSRule; | 334 attribute CSSRuleConstructor CSSRule; |
| (...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 788 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS
ourceBufferList; | 786 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS
ourceBufferList; |
| 789 | 787 |
| 790 #endif // defined(LANGUAGE_JAVASCRIPT) | 788 #endif // defined(LANGUAGE_JAVASCRIPT) |
| 791 | 789 |
| 792 #if defined(V8_BINDING) && V8_BINDING | 790 #if defined(V8_BINDING) && V8_BINDING |
| 793 // window.toString() requires special handling in V8 | 791 // window.toString() requires special handling in V8 |
| 794 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); | 792 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); |
| 795 #endif // defined(V8_BINDING) | 793 #endif // defined(V8_BINDING) |
| 796 }; | 794 }; |
| 797 | 795 |
| OLD | NEW |