| 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 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 [RuntimeEnabled=ScriptedSpeech] attribute SpeechGrammarListConstructor webki
tSpeechGrammarList; | 226 [RuntimeEnabled=ScriptedSpeech] attribute SpeechGrammarListConstructor webki
tSpeechGrammarList; |
| 227 [RuntimeEnabled=ScriptedSpeech] attribute SpeechRecognitionConstructor webki
tSpeechRecognition; | 227 [RuntimeEnabled=ScriptedSpeech] attribute SpeechRecognitionConstructor webki
tSpeechRecognition; |
| 228 [RuntimeEnabled=ScriptedSpeech] attribute SpeechRecognitionErrorConstructor
webkitSpeechRecognitionError; | 228 [RuntimeEnabled=ScriptedSpeech] attribute SpeechRecognitionErrorConstructor
webkitSpeechRecognitionError; |
| 229 [RuntimeEnabled=ScriptedSpeech] attribute SpeechRecognitionEventConstructor
webkitSpeechRecognitionEvent; | 229 [RuntimeEnabled=ScriptedSpeech] attribute SpeechRecognitionEventConstructor
webkitSpeechRecognitionEvent; |
| 230 [Conditional=WEB_AUDIO] attribute PannerNodeConstructor webkitAudioPannerNod
e; | 230 [Conditional=WEB_AUDIO] attribute PannerNodeConstructor webkitAudioPannerNod
e; |
| 231 | 231 |
| 232 // Prefixed ShadowRoot constructor should be phased out eventually, but for
the moment it must be always exposed. | 232 // Prefixed ShadowRoot constructor should be phased out eventually, but for
the moment it must be always exposed. |
| 233 // Unprefixed ShadowRoot constructor should be visible when the feature flag
is enabled. | 233 // Unprefixed ShadowRoot constructor should be visible when the feature flag
is enabled. |
| 234 // FIXME: When it's ready to remove WebKitShadowRoot, get rid of both constr
uctors from Window.idl and remove | 234 // FIXME: When it's ready to remove WebKitShadowRoot, get rid of both constr
uctors from Window.idl and remove |
| 235 // [NoInterfaceObject] from ShadowRoot interface definition. | 235 // [NoInterfaceObject] from ShadowRoot interface definition. |
| 236 [RuntimeEnabled=ShadowDOM] attribute ShadowRootConstructor ShadowRoot; | 236 attribute ShadowRootConstructor ShadowRoot; |
| 237 [MeasureAs=PrefixedShadowRootConstructor] attribute ShadowRootConstructor We
bKitShadowRoot; | 237 [MeasureAs=PrefixedShadowRootConstructor] attribute ShadowRootConstructor We
bKitShadowRoot; |
| 238 | 238 |
| 239 // window.toString() requires special handling in V8 | 239 // window.toString() requires special handling in V8 |
| 240 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); | 240 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t
oString(); |
| 241 | 241 |
| 242 [NotEnumerable] getter Window (unsigned long index); | 242 [NotEnumerable] getter Window (unsigned long index); |
| 243 [Custom, NotEnumerable] getter Window (DOMString name); | 243 [Custom, NotEnumerable] getter Window (DOMString name); |
| 244 }; | 244 }; |
| 245 | 245 |
| 246 Window implements GlobalEventHandlers; | 246 Window implements GlobalEventHandlers; |
| 247 Window implements ImageBitmapFactories; | 247 Window implements ImageBitmapFactories; |
| 248 Window implements WindowBase64; | 248 Window implements WindowBase64; |
| 249 Window implements WindowEventHandlers; | 249 Window implements WindowEventHandlers; |
| 250 Window implements WindowTimers; | 250 Window implements WindowTimers; |
| OLD | NEW |