Changeset 147857 in webkit
- Timestamp:
- Apr 6, 2013, 3:42:32 PM (12 years ago)
- Location:
- trunk/Source
- Files:
-
- 108 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/JavaScriptCore/ChangeLog
r147856 r147857 1 2013-04-06 Geoffrey Garen <ggaren@apple.com> 2 3 Removed v8 bindings hooks from IDL files 4 https://bugs.webkit.org/show_bug.cgi?id=114091 5 6 Reviewed by Anders Carlsson and Sam Weinig. 7 8 * heap/HeapStatistics.h: 9 1 10 2013-04-03 Roger Fong <roger_fong@apple.com> 2 11 -
trunk/Source/JavaScriptCore/heap/HeapStatistics.h
r133959 r147857 27 27 #define HeapStatistics_h 28 28 29 #include "JSExportMacros.h" 29 30 #include <wtf/Deque.h> 30 31 -
trunk/Source/WTF/ChangeLog
r147799 r147857 1 2013-04-06 Geoffrey Garen <ggaren@apple.com> 2 3 Removed v8 bindings hooks from IDL files 4 https://bugs.webkit.org/show_bug.cgi?id=114091 5 6 Reviewed by Anders Carlsson and Sam Weinig. 7 8 * wtf/ArrayBuffer.h: 9 (WTF): 10 (WTF::ArrayBufferContents::ArrayBufferContents): 11 (WTF::ArrayBufferContents::transfer): 12 (ArrayBufferContents): 13 (ArrayBuffer): 14 (WTF::ArrayBufferContents::~ArrayBufferContents): 15 * wtf/Platform.h: 16 1 17 2013-04-05 Jesus Sanchez-Palencia <jesus.palencia@openbossa.org> 2 18 -
trunk/Source/WTF/wtf/ArrayBuffer.h
r126196 r147857 37 37 class ArrayBufferView; 38 38 39 #if defined(WTF_USE_V8)40 // The current implementation assumes that the instance of this class is a41 // singleton living for the entire process's lifetime.42 class ArrayBufferDeallocationObserver {43 public:44 virtual void ArrayBufferDeallocated(unsigned sizeInBytes) = 0;45 };46 #endif47 48 49 39 class ArrayBufferContents { 50 40 WTF_MAKE_NONCOPYABLE(ArrayBufferContents); … … 53 43 : m_data(0) 54 44 , m_sizeInBytes(0) 55 #if defined(WTF_USE_V8)56 , m_deallocationObserver(0)57 #endif58 45 { } 59 46 … … 67 54 : m_data(data) 68 55 , m_sizeInBytes(sizeInBytes) 69 #if defined(WTF_USE_V8)70 , m_deallocationObserver(0)71 #endif72 56 { } 73 57 … … 87 71 m_data = 0; 88 72 m_sizeInBytes = 0; 89 #if defined(WTF_USE_V8)90 // Notify the current V8 isolate that the buffer is gone.91 if (m_deallocationObserver)92 m_deallocationObserver->ArrayBufferDeallocated(other.m_sizeInBytes);93 ASSERT(!other.m_deallocationObserver);94 m_deallocationObserver = 0;95 #endif96 73 } 97 74 98 75 void* m_data; 99 76 unsigned m_sizeInBytes; 100 101 #if defined(WTF_USE_V8)102 ArrayBufferDeallocationObserver* m_deallocationObserver;103 #endif104 77 }; 105 78 … … 126 99 WTF_EXPORT_PRIVATE bool transfer(ArrayBufferContents&, Vector<RefPtr<ArrayBufferView> >& neuteredViews); 127 100 bool isNeutered() { return !m_contents.m_data; } 128 129 #if defined(WTF_USE_V8)130 void setDeallocationObserver(ArrayBufferDeallocationObserver* deallocationObserver)131 {132 m_contents.m_deallocationObserver = deallocationObserver;133 }134 #endif135 101 136 102 ~ArrayBuffer() { } … … 273 239 ArrayBufferContents::~ArrayBufferContents() 274 240 { 275 #if defined (WTF_USE_V8)276 if (m_deallocationObserver)277 m_deallocationObserver->ArrayBufferDeallocated(m_sizeInBytes);278 #endif279 241 WTF::fastFree(m_data); 280 242 } -
trunk/Source/WTF/wtf/Platform.h
r147755 r147857 1011 1011 #endif 1012 1012 1013 /* Not using V8 implies using JSC and vice versa */1014 #if !USE(V8)1015 #define WTF_USE_JSC 11016 #endif1017 1018 1013 #if !defined(WTF_USE_ZLIB) && !PLATFORM(QT) 1019 1014 #define WTF_USE_ZLIB 1 -
trunk/Source/WebCore/ChangeLog
r147855 r147857 1 2013-04-06 Geoffrey Garen <ggaren@apple.com> 2 3 Removed v8 bindings hooks from IDL files 4 https://bugs.webkit.org/show_bug.cgi?id=114091 5 6 Reviewed by Anders Carlsson and Sam Weinig. 7 8 * Modules/encryptedmedia/MediaKeySession.idl: 9 * Modules/filesystem/DOMWindowFileSystem.idl: 10 * Modules/filesystem/WorkerContextFileSystem.idl: 11 * Modules/gamepad/NavigatorGamepad.idl: 12 * Modules/geolocation/NavigatorGeolocation.idl: 13 * Modules/indexeddb/DOMWindowIndexedDatabase.idl: 14 * Modules/indexeddb/WorkerContextIndexedDatabase.idl: 15 * Modules/mediastream/DOMWindowMediaStream.idl: 16 * Modules/mediastream/NavigatorMediaStream.idl: 17 * Modules/notifications/DOMWindowNotifications.idl: 18 * Modules/notifications/NotificationCenter.idl: 19 * Modules/notifications/WorkerContextNotifications.idl: 20 * Modules/quota/DOMWindowQuota.idl: 21 * Modules/speech/DOMWindowSpeech.idl: 22 * Modules/webaudio/AudioBufferSourceNode.idl: 23 * Modules/webaudio/AudioContext.idl: 24 * Modules/webaudio/AudioParam.idl: 25 * Modules/webaudio/DOMWindowWebAudio.idl: 26 * Modules/webdatabase/DOMWindowWebDatabase.idl: 27 * Modules/webdatabase/WorkerContextWebDatabase.idl: 28 * Modules/websockets/DOMWindowWebSocket.idl: 29 * Modules/websockets/WorkerContextWebSocket.idl: 30 * bindings/js/JSDOMBinding.cpp: 31 * bindings/js/ScriptController.h: 32 (ScriptController): 33 * bindings/scripts/test/TestNode.idl: 34 * bindings/scripts/test/TestObj.idl: 35 * css/CSSFontFaceLoadEvent.idl: 36 * css/CSSHostRule.idl: 37 * css/CSSRule.idl: 38 * css/CSSRuleList.idl: 39 * css/CSSStyleDeclaration.idl: 40 * css/CSSStyleSheet.idl: 41 * css/CSSValue.idl: 42 * css/FontLoader.idl: 43 * css/StyleSheet.idl: 44 * css/WebKitCSSRegionRule.idl: 45 * dom/Clipboard.idl: 46 * dom/CustomElementConstructor.idl: 47 * dom/CustomEvent.idl: 48 * dom/DOMNamedFlowCollection.idl: 49 * dom/DOMStringMap.idl: 50 * dom/DataTransferItemList.idl: 51 * dom/Document.idl: 52 * dom/DocumentFragment.idl: 53 * dom/Element.idl: 54 * dom/Event.idl: 55 * dom/EventTarget.idl: 56 * dom/MessageChannel.idl: 57 * dom/MouseEvent.idl: 58 * dom/MutationRecord.idl: 59 * dom/NamedNodeMap.idl: 60 * dom/Node.idl: 61 * dom/NodeList.idl: 62 * dom/RequestAnimationFrameCallback.idl: 63 * dom/ShadowRoot.idl: 64 * dom/Text.idl: 65 * history/HistoryItem.cpp: 66 (WebCore::HistoryItem::encodeBackForwardTreeNode): 67 (WebCore::HistoryItem::decodeBackForwardTree): 68 * html/DOMSettableTokenList.idl: 69 * html/DOMTokenList.idl: 70 * html/HTMLAllCollection.idl: 71 * html/HTMLAppletElement.idl: 72 * html/HTMLCollection.idl: 73 * html/HTMLDialogElement.idl: 74 * html/HTMLDivElement.idl: 75 * html/HTMLDocument.idl: 76 * html/HTMLElement.idl: 77 * html/HTMLEmbedElement.idl: 78 * html/HTMLFormControlsCollection.idl: 79 * html/HTMLFormElement.idl: 80 * html/HTMLImageElement.idl: 81 * html/HTMLInputElement.idl: 82 * html/HTMLMediaElement.idl: 83 * html/HTMLObjectElement.idl: 84 * html/HTMLOptionsCollection.idl: 85 * html/HTMLSelectElement.idl: 86 * html/HTMLSpanElement.idl: 87 * html/HTMLStyleElement.idl: 88 * html/HTMLTemplateElement.idl: 89 * html/HTMLTrackElement.idl: 90 * html/HTMLUnknownElement.idl: 91 * html/MediaKeyError.idl: 92 * html/MediaKeyEvent.idl: 93 * html/MicroDataItemValue.idl: 94 * html/canvas/CanvasRenderingContext2D.idl: 95 * html/canvas/DOMPath.idl: 96 * html/shadow/HTMLContentElement.idl: 97 * html/shadow/HTMLShadowElement.idl: 98 * html/track/TextTrack.idl: 99 * inspector/InjectedScriptHost.idl: 100 * inspector/InspectorIndexedDBAgent.cpp: 101 (WebCore::InspectorIndexedDBAgent::requestDatabaseNames): 102 (WebCore::InspectorIndexedDBAgent::requestDatabase): 103 (WebCore::InspectorIndexedDBAgent::requestData): 104 (WebCore::InspectorIndexedDBAgent::clearObjectStore): 105 (WebCore): 106 * loader/EmptyClients.h: 107 (EmptyFrameLoaderClient): 108 * loader/FrameLoaderClient.h: 109 (FrameLoaderClient): 110 * page/Console.idl: 111 * page/DOMWindow.idl: 112 * page/DOMWindowPagePopup.idl: 113 * page/History.idl: 114 * page/Location.idl: 115 * platform/graphics/skia/PatternSkia.cpp: 116 (WebCore::Pattern::platformDestroy): 117 (WebCore::Pattern::platformPattern): 118 * testing/Internals.cpp: 119 (WebCore::Internals::serializeObject): 120 (WebCore::Internals::deserializeBuffer): 121 1 122 2013-04-06 Zan Dobersek <zdobersek@igalia.com> 2 123 -
trunk/Source/WebCore/Modules/encryptedmedia/MediaKeySession.idl
r142918 r147857 42 42 43 43 // EventListeners 44 attribute [V8EnabledAtRuntime=encryptedMedia]EventListener onwebkitkeyadded;45 attribute [V8EnabledAtRuntime=encryptedMedia]EventListener onwebkitkeyerror;46 attribute [V8EnabledAtRuntime=encryptedMedia]EventListener onwebkitkeymessage;44 attribute EventListener onwebkitkeyadded; 45 attribute EventListener onwebkitkeyerror; 46 attribute EventListener onwebkitkeymessage; 47 47 48 48 // EventTarget interface -
trunk/Source/WebCore/Modules/filesystem/DOMWindowFileSystem.idl
r131172 r147857 32 32 const unsigned short PERSISTENT = 1; 33 33 34 [V8EnabledAtRuntime=FileSystem]void webkitRequestFileSystem(in unsigned short type, in long long size,34 void webkitRequestFileSystem(in unsigned short type, in long long size, 35 35 in [Callback] FileSystemCallback successCallback, in [Callback, Optional] ErrorCallback errorCallback); 36 [V8EnabledAtRuntime=FileSystem]void webkitResolveLocalFileSystemURL(in DOMString url,36 void webkitResolveLocalFileSystemURL(in DOMString url, 37 37 in [Callback] EntryCallback successCallback, in [Callback, Optional] ErrorCallback errorCallback); 38 38 }; -
trunk/Source/WebCore/Modules/filesystem/WorkerContextFileSystem.idl
r131172 r147857 32 32 const unsigned short PERSISTENT = 1; 33 33 34 [V8EnabledAtRuntime=FileSystem]void webkitRequestFileSystem(in unsigned short type, in long long size, in [Callback, Optional] FileSystemCallback successCallback, in [Callback, Optional] ErrorCallback errorCallback);35 [V8EnabledAtRuntime=FileSystem]DOMFileSystemSync webkitRequestFileSystemSync(in unsigned short type, in long long size) raises (FileException);36 [V8EnabledAtRuntime=FileSystem]void webkitResolveLocalFileSystemURL(in DOMString url, in [Callback] EntryCallback successCallback, in [Callback, Optional] ErrorCallback errorCallback);37 [V8EnabledAtRuntime=FileSystem]EntrySync webkitResolveLocalFileSystemSyncURL(in DOMString url) raises (FileException);34 void webkitRequestFileSystem(in unsigned short type, in long long size, in [Callback, Optional] FileSystemCallback successCallback, in [Callback, Optional] ErrorCallback errorCallback); 35 DOMFileSystemSync webkitRequestFileSystemSync(in unsigned short type, in long long size) raises (FileException); 36 void webkitResolveLocalFileSystemURL(in DOMString url, in [Callback] EntryCallback successCallback, in [Callback, Optional] ErrorCallback errorCallback); 37 EntrySync webkitResolveLocalFileSystemSyncURL(in DOMString url) raises (FileException); 38 38 39 [V8EnabledAtRuntime=FileSystem]attribute FileErrorConstructor FileError;40 [V8EnabledAtRuntime=FileSystem]attribute FileExceptionConstructor FileException;39 attribute FileErrorConstructor FileError; 40 attribute FileExceptionConstructor FileException; 41 41 }; 42 42 -
trunk/Source/WebCore/Modules/gamepad/NavigatorGamepad.idl
r131172 r147857 22 22 Supplemental=Navigator 23 23 ] interface NavigatorGamepad { 24 [V8EnabledAtRuntime]GamepadList webkitGetGamepads();24 GamepadList webkitGetGamepads(); 25 25 }; 26 26 -
trunk/Source/WebCore/Modules/geolocation/NavigatorGeolocation.idl
r131172 r147857 22 22 Supplemental=Navigator 23 23 ] interface NavigatorGeolocation { 24 [V8EnabledAtRuntime]readonly attribute Geolocation geolocation;24 readonly attribute Geolocation geolocation; 25 25 }; 26 26 -
trunk/Source/WebCore/Modules/indexeddb/DOMWindowIndexedDatabase.idl
r135424 r147857 29 29 Supplemental=DOMWindow 30 30 ] interface DOMWindowIndexedDatabase { 31 [ImplementedAs=indexedDB ,V8MeasureAs=PrefixedIndexedDB] readonly attribute IDBFactory webkitIndexedDB;31 [ImplementedAs=indexedDB] readonly attribute IDBFactory webkitIndexedDB; 32 32 33 33 attribute IDBCursorConstructor webkitIDBCursor; … … 40 40 attribute IDBTransactionConstructor webkitIDBTransaction; 41 41 42 [V8MeasureAs=UnprefixedIndexedDB]readonly attribute IDBFactory indexedDB;42 readonly attribute IDBFactory indexedDB; 43 43 44 44 attribute IDBCursorConstructor IDBCursor; -
trunk/Source/WebCore/Modules/indexeddb/WorkerContextIndexedDatabase.idl
r135424 r147857 29 29 Supplemental=WorkerContext 30 30 ] interface WorkerContextIndexedDatabase { 31 [ImplementedAs=indexedDB ,V8EnabledAtRuntime] readonly attribute IDBFactory webkitIndexedDB;31 [ImplementedAs=indexedDB] readonly attribute IDBFactory webkitIndexedDB; 32 32 33 33 attribute IDBCursorConstructor webkitIDBCursor; … … 40 40 attribute IDBTransactionConstructor webkitIDBTransaction; 41 41 42 [V8EnabledAtRuntime]readonly attribute IDBFactory indexedDB;42 readonly attribute IDBFactory indexedDB; 43 43 44 44 attribute IDBCursorConstructor IDBCursor; -
trunk/Source/WebCore/Modules/mediastream/DOMWindowMediaStream.idl
r134084 r147857 29 29 Supplemental=DOMWindow 30 30 ] interface DOMWindowMediaStream { 31 [V8EnabledAtRuntime]attribute MediaStreamConstructor webkitMediaStream;32 [V8EnabledAtRuntime]attribute RTCPeerConnectionConstructor webkitRTCPeerConnection;31 attribute MediaStreamConstructor webkitMediaStream; 32 attribute RTCPeerConnectionConstructor webkitRTCPeerConnection; 33 33 attribute RTCSessionDescriptionConstructor RTCSessionDescription; 34 34 attribute RTCIceCandidateConstructor RTCIceCandidate; -
trunk/Source/WebCore/Modules/mediastream/NavigatorMediaStream.idl
r131172 r147857 22 22 Supplemental=Navigator 23 23 ] interface NavigatorMediaStream { 24 [V8EnabledAtRuntime]void webkitGetUserMedia(in Dictionary options,24 void webkitGetUserMedia(in Dictionary options, 25 25 in [Callback] NavigatorUserMediaSuccessCallback successCallback, 26 26 in [Callback, Optional] NavigatorUserMediaErrorCallback errorCallback) -
trunk/Source/WebCore/Modules/notifications/DOMWindowNotifications.idl
r131172 r147857 30 30 ] interface DOMWindowNotifications { 31 31 #if defined(ENABLE_LEGACY_NOTIFICATIONS) && ENABLE_LEGACY_NOTIFICATIONS 32 [V8EnabledAtRuntime, V8MeasureAs=LegacyNotifications]readonly attribute NotificationCenter webkitNotifications;32 readonly attribute NotificationCenter webkitNotifications; 33 33 #endif 34 34 #if defined(ENABLE_NOTIFICATIONS) && ENABLE_NOTIFICATIONS -
trunk/Source/WebCore/Modules/notifications/NotificationCenter.idl
r144376 r147857 36 36 ] interface NotificationCenter { 37 37 #if !defined(ENABLE_TEXT_NOTIFICATIONS_ONLY) || !ENABLE_TEXT_NOTIFICATIONS_ONLY 38 [V8EnabledPerContext=htmlNotifications, V8MeasureAs=LegacyHTMLNotifications]Notification createHTMLNotification(in DOMString url) raises(DOMException);38 Notification createHTMLNotification(in DOMString url) raises(DOMException); 39 39 #endif 40 [V8MeasureAs=LegacyTextNotifications]Notification createNotification(in DOMString iconUrl, in DOMString title, in DOMString body) raises(DOMException);40 Notification createNotification(in DOMString iconUrl, in DOMString title, in DOMString body) raises(DOMException); 41 41 42 42 int checkPermission(); -
trunk/Source/WebCore/Modules/notifications/WorkerContextNotifications.idl
r131172 r147857 30 30 ] interface WorkerContextNotifications { 31 31 #if defined(ENABLE_LEGACY_NOTIFICATIONS) && ENABLE_LEGACY_NOTIFICATIONS 32 [V8EnabledAtRuntime]readonly attribute NotificationCenter webkitNotifications;32 readonly attribute NotificationCenter webkitNotifications; 33 33 #endif 34 34 }; -
trunk/Source/WebCore/Modules/quota/DOMWindowQuota.idl
r145782 r147857 28 28 Supplemental=DOMWindow 29 29 ] interface DOMWindowQuota { 30 readonly attribute [V8MeasureAs=StorageInfo]StorageInfo webkitStorageInfo;30 readonly attribute StorageInfo webkitStorageInfo; 31 31 }; 32 32 -
trunk/Source/WebCore/Modules/speech/DOMWindowSpeech.idl
r131172 r147857 28 28 Supplemental=DOMWindow 29 29 ] interface DOMWindowSpeech { 30 [V8EnabledAtRuntime]attribute SpeechRecognitionConstructor webkitSpeechRecognition;31 [V8EnabledAtRuntime]attribute SpeechRecognitionErrorConstructor webkitSpeechRecognitionError;32 [V8EnabledAtRuntime]attribute SpeechRecognitionEventConstructor webkitSpeechRecognitionEvent;33 [V8EnabledAtRuntime]attribute SpeechGrammarConstructor webkitSpeechGrammar;34 [V8EnabledAtRuntime]attribute SpeechGrammarListConstructor webkitSpeechGrammarList;30 attribute SpeechRecognitionConstructor webkitSpeechRecognition; 31 attribute SpeechRecognitionErrorConstructor webkitSpeechRecognitionError; 32 attribute SpeechRecognitionEventConstructor webkitSpeechRecognitionEvent; 33 attribute SpeechGrammarConstructor webkitSpeechGrammar; 34 attribute SpeechGrammarListConstructor webkitSpeechGrammarList; 35 35 }; -
trunk/Source/WebCore/Modules/webaudio/AudioBufferSourceNode.idl
r146486 r147857 46 46 attribute double loopEnd; 47 47 48 [V8MeasureAs=WebAudioStart]void start(in double when);49 [ V8MeasureAs=WebAudioStart,ImplementedAs=startGrain] void start(in double when, in double grainOffset);50 [ V8MeasureAs=WebAudioStart,ImplementedAs=startGrain] void start(in double when, in double grainOffset, in double grainDuration);48 void start(in double when); 49 [ImplementedAs=startGrain] void start(in double when, in double grainOffset); 50 [ImplementedAs=startGrain] void start(in double when, in double grainOffset, in double grainDuration); 51 51 void stop(in double when); 52 52 … … 54 54 attribute boolean looping; // This is an alias for the .loop attribute for backwards compatibility. 55 55 56 [V8MeasureAs=LegacyWebAudio]void noteOn(in double when);57 [V8MeasureAs=LegacyWebAudio]void noteGrainOn(in double when, in double grainOffset, in double grainDuration);56 void noteOn(in double when); 57 void noteGrainOn(in double when, in double grainOffset, in double grainDuration); 58 58 void noteOff(in double when); 59 59 #endif -
trunk/Source/WebCore/Modules/webaudio/AudioContext.idl
r145922 r147857 96 96 97 97 #if defined(ENABLE_LEGACY_WEB_AUDIO) && ENABLE_LEGACY_WEB_AUDIO 98 [ V8MeasureAs=LegacyWebAudio,ImplementedAs=createGain] GainNode createGainNode();99 [ V8MeasureAs=LegacyWebAudio,ImplementedAs=createDelay] DelayNode createDelayNode(in [Optional] double maxDelayTime)98 [ImplementedAs=createGain] GainNode createGainNode(); 99 [ImplementedAs=createDelay] DelayNode createDelayNode(in [Optional] double maxDelayTime) 100 100 raises(DOMException); 101 101 102 [ V8MeasureAs=LegacyWebAudio,ImplementedAs=createScriptProcessor] ScriptProcessorNode createJavaScriptNode(in unsigned long bufferSize, in [Optional] unsigned long numberOfInputChannels, in [Optional] unsigned long numberOfOutputChannels)102 [ImplementedAs=createScriptProcessor] ScriptProcessorNode createJavaScriptNode(in unsigned long bufferSize, in [Optional] unsigned long numberOfInputChannels, in [Optional] unsigned long numberOfOutputChannels) 103 103 raises(DOMException); 104 104 #endif -
trunk/Source/WebCore/Modules/webaudio/AudioParam.idl
r132274 r147857 56 56 57 57 #if defined(ENABLE_LEGACY_WEB_AUDIO) && ENABLE_LEGACY_WEB_AUDIO 58 [ V8MeasureAs=LegacyWebAudio,ImplementedAs=setTargetAtTime] void setTargetValueAtTime(in float targetValue, in float time, in float timeConstant);58 [ImplementedAs=setTargetAtTime] void setTargetValueAtTime(in float targetValue, in float time, in float timeConstant); 59 59 #endif 60 60 -
trunk/Source/WebCore/Modules/webaudio/DOMWindowWebAudio.idl
r137516 r147857 30 30 ] interface DOMWindowWebAudio { 31 31 #if !defined(LANGUAGE_CPP) || !LANGUAGE_CPP 32 [JSCustomGetter , V8EnabledAtRuntime] attribute AudioContextConstructor webkitAudioContext;33 [V8EnabledAtRuntime]attribute OfflineAudioContextConstructor webkitOfflineAudioContext;32 [JSCustomGetter] attribute AudioContextConstructor webkitAudioContext; 33 attribute OfflineAudioContextConstructor webkitOfflineAudioContext; 34 34 attribute PannerNodeConstructor webkitAudioPannerNode; 35 35 attribute AudioProcessingEventConstructor AudioProcessingEvent; … … 37 37 #endif 38 38 }; 39 -
trunk/Source/WebCore/Modules/webdatabase/DOMWindowWebDatabase.idl
r131172 r147857 29 29 Supplemental=DOMWindow 30 30 ] interface DOMWindowWebDatabase { 31 [V8EnabledAtRuntime, V8MeasureAs=OpenWebDatabase]Database openDatabase(in DOMString name, in DOMString version, in DOMString displayName, in unsigned long estimatedSize, in [Callback, Optional] DatabaseCallback creationCallback)31 Database openDatabase(in DOMString name, in DOMString version, in DOMString displayName, in unsigned long estimatedSize, in [Callback, Optional] DatabaseCallback creationCallback) 32 32 raises(DOMException); 33 33 #if !defined(LANGUAGE_CPP) || !LANGUAGE_CPP -
trunk/Source/WebCore/Modules/webdatabase/WorkerContextWebDatabase.idl
r131172 r147857 29 29 Supplemental=WorkerContext 30 30 ] interface WorkerContextWebDatabase { 31 [V8EnabledAtRuntime]Database openDatabase(in DOMString name, in DOMString version, in DOMString displayName, in unsigned long estimatedSize, in [Callback, Optional] DatabaseCallback creationCallback)31 Database openDatabase(in DOMString name, in DOMString version, in DOMString displayName, in unsigned long estimatedSize, in [Callback, Optional] DatabaseCallback creationCallback) 32 32 raises(DOMException); 33 33 34 [V8EnabledAtRuntime]DatabaseSync openDatabaseSync(in DOMString name, in DOMString version, in DOMString displayName, in unsigned long estimatedSize, in [Callback, Optional] DatabaseCallback creationCallback)34 DatabaseSync openDatabaseSync(in DOMString name, in DOMString version, in DOMString displayName, in unsigned long estimatedSize, in [Callback, Optional] DatabaseCallback creationCallback) 35 35 raises(DOMException); 36 36 }; -
trunk/Source/WebCore/Modules/websockets/DOMWindowWebSocket.idl
r131172 r147857 31 31 #if !defined(LANGUAGE_CPP) || !LANGUAGE_CPP 32 32 attribute CloseEventConstructor CloseEvent; 33 [JSCustomGetter , V8EnabledAtRuntime] attribute WebSocketConstructor WebSocket; // Usable with the new operator33 [JSCustomGetter] attribute WebSocketConstructor WebSocket; // Usable with the new operator 34 34 #endif 35 35 }; -
trunk/Source/WebCore/Modules/websockets/WorkerContextWebSocket.idl
r131172 r147857 29 29 Supplemental=WorkerContext 30 30 ] interface WorkerContextWebSocket { 31 [JSCustomGetter ,V8EnabledAtRuntime] attribute WebSocketConstructor WebSocket; // Usable with the new operator31 [JSCustomGetter] attribute WebSocketConstructor WebSocket; // Usable with the new operator 32 32 }; 33 33 -
trunk/Source/WebCore/WebCore.xcodeproj/project.pbxproj
r147843 r147857 8427 8427 7C522D4A15B478B2009B7C95 /* InspectorOverlay.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InspectorOverlay.h; sourceTree = "<group>"; }; 8428 8428 7C60128060078BB70E367A95 /* DNSResolveQueue.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = DNSResolveQueue.cpp; sourceTree = "<group>"; }; 8429 7C6136F61710C35200FF4A57 /* Hasher.pm */ = {isa = PBXFileReference; lastKnownFileType = text.script.perl; name = Hasher.pm; path = scripts/Hasher.pm; sourceTree = "<group>"; }; 8430 7C6136F71710C35200FF4A57 /* InFilesCompiler.pm */ = {isa = PBXFileReference; lastKnownFileType = text.script.perl; name = InFilesCompiler.pm; path = scripts/InFilesCompiler.pm; sourceTree = "<group>"; }; 8431 7C6136F81710C35200FF4A57 /* InFilesParser.pm */ = {isa = PBXFileReference; lastKnownFileType = text.script.perl; name = InFilesParser.pm; path = scripts/InFilesParser.pm; sourceTree = "<group>"; }; 8432 7C6136F91710C35200FF4A57 /* StaticString.pm */ = {isa = PBXFileReference; lastKnownFileType = text.script.perl; name = StaticString.pm; path = scripts/StaticString.pm; sourceTree = "<group>"; }; 8429 8433 7E12E90D15FA5D3A005E4126 /* CustomFilterMeshGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CustomFilterMeshGenerator.h; path = filters/CustomFilterMeshGenerator.h; sourceTree = "<group>"; }; 8430 8434 7E12E90E15FA5D3A005E4126 /* CustomFilterMeshGenerator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = CustomFilterMeshGenerator.cpp; path = filters/CustomFilterMeshGenerator.cpp; sourceTree = "<group>"; }; … … 18637 18641 93F8B3050A300FE100F61AB8 /* CodeGenerator.pm */, 18638 18642 93F8B3070A300FEA00F61AB8 /* generate-bindings.pl */, 18643 7C6136F61710C35200FF4A57 /* Hasher.pm */, 18639 18644 A83B533814F399BB00720D9D /* IDLAttributes.txt */, 18640 18645 14813BF309EDF88E00F757E1 /* IDLParser.pm */, 18646 7C6136F71710C35200FF4A57 /* InFilesCompiler.pm */, 18647 7C6136F81710C35200FF4A57 /* InFilesParser.pm */, 18641 18648 A83B538014FBB2EC00720D9D /* preprocess-idls.pl */, 18642 18649 C0F2A43F13869A280066C534 /* preprocessor.pm */, … … 18645 18652 97EF7DFD107E55B700D7C49C /* ScriptControllerBase.cpp */, 18646 18653 CE02F0C311E83ADD00C6684A /* ScriptControllerBase.h */, 18654 7C6136F91710C35200FF4A57 /* StaticString.pm */, 18647 18655 ); 18648 18656 path = bindings; -
trunk/Source/WebCore/bindings/js/ScriptController.h
r143750 r147857 164 164 #endif 165 165 166 // FIXME: S tub for parity with V8 implementation. http://webkit.org/b/100815166 // FIXME: Script run from an isolated world should bypass a page's CSP. http://webkit.org/b/100815 167 167 bool shouldBypassMainWorldContentSecurityPolicy() { return false; } 168 168 -
trunk/Source/WebCore/bindings/scripts/test/TestNode.idl
r131172 r147857 22 22 EventTarget, 23 23 Constructor, 24 V8DependentLifetime25 24 ] interface TestNode : Node { 26 25 }; -
trunk/Source/WebCore/bindings/scripts/test/TestObj.idl
r146785 r147857 51 51 attribute unsigned long long unsignedLongLongAttr; 52 52 attribute DOMString stringAttr; 53 [V8MeasureAs=TestFeature]attribute TestObj testObjAttr;53 attribute TestObj testObjAttr; 54 54 55 55 // WK_ucfirst, WK_lcfirst exceptional cases. … … 76 76 long longMethod(); 77 77 long longMethodWithArgs(in long longArg, in DOMString strArg, in TestObj objArg); 78 [V8MeasureAs=TestFeature]TestObj objMethod();78 TestObj objMethod(); 79 79 TestObj objMethodWithArgs(in long longArg, in DOMString strArg, in TestObj objArg); 80 80 … … 98 98 // 'Custom' extended attribute 99 99 [Custom] attribute long customAttr; 100 [Custom , V8MeasureAs=CustomTestFeature] void customMethod();100 [Custom] void customMethod(); 101 101 [Custom] void customMethodWithArgs(in long longArg, in DOMString strArg, in TestObj objArg); 102 102 … … 142 142 void methodWithOptionalStringIsNullString(in [Optional=DefaultIsNullString] DOMString str); 143 143 144 #if defined(TESTING_ V8) || defined(TESTING_JS)144 #if defined(TESTING_JS) 145 145 // 'Callback' extended attribute 146 146 void methodWithCallbackArg(in [Callback] TestCallback callback); … … 152 152 #endif 153 153 154 #if defined(TESTING_V8)155 // 'EnforceRange' extended attribute156 void methodWithEnforceRangeInt32(in [EnforceRange] long value);157 void methodWithEnforceRangeUInt32(in [EnforceRange] unsigned long value);158 void methodWithEnforceRangeInt64(in [EnforceRange] long long value);159 void methodWithEnforceRangeUInt64(in [EnforceRange] unsigned long long value);160 161 attribute [EnforceRange] long enforcedRangeLongAttr;162 attribute [EnforceRange] unsigned long enforcedRangeUnsignedLongAttr;163 attribute [EnforceRange] long long enforcedRangeLongLongAttr;164 attribute [EnforceRange] unsigned long long enforcedRangeUnsignedLongLongAttr;165 #endif166 167 154 // 'Conditional' extended attribute 168 155 [Conditional=Condition1] attribute long conditionalAttr1; … … 181 168 [Conditional=Condition1] const unsigned short CONDITIONAL_CONST = 0; 182 169 183 #if defined(TESTING_ V8) || defined(TESTING_JS)170 #if defined(TESTING_JS) 184 171 [CachedAttribute] readonly attribute any cachedAttribute1; 185 172 [CachedAttribute] readonly attribute any cachedAttribute2; … … 188 175 attribute any anyAttribute; 189 176 190 #if defined(TESTING_ V8) || defined(TESTING_JS)177 #if defined(TESTING_JS) 191 178 // Overloads 192 179 void overloadedMethod(in TestObj? objArg, in [StrictTypeChecking] DOMString strArg); … … 214 201 void classMethodWithClamp(in [Clamp] unsigned short objArgsShort, in [Clamp] unsigned long objArgsLong); 215 202 216 #if defined(TESTING_V8)217 // 'V8EnabledAtRuntime' methods and attributes.218 [V8EnabledAtRuntime] void enabledAtRuntimeMethod1(in long longArg);219 [V8EnabledAtRuntime=FeatureName] void enabledAtRuntimeMethod2(in long longArg);220 [V8EnabledAtRuntime] attribute long enabledAtRuntimeAttr1;221 [V8EnabledAtRuntime=FeatureName] attribute long enabledAtRuntimeAttr2;222 // 'V8EnabledPerContext' methods and attributes.223 [V8EnabledPerContext] void enabledPerContextMethod1(in long longArg);224 [V8EnabledPerContext=FeatureName] void enabledPerContextMethod2(in long longArg);225 [V8EnabledPerContext] attribute long enabledPerContextAttr1;226 [V8EnabledPerContext=FeatureName] attribute long enabledPerContextAttr2;227 #endif228 229 230 #if defined(TESTING_V8)231 attribute float[] floatArray;232 attribute double[] doubleArray;233 #endif234 235 203 #if defined(TESTING_JS) 236 204 void methodWithUnsignedLongSequence(in sequence<unsigned long> unsignedLongSequence); 237 #endif238 #if defined(TESTING_V8) || defined(TESTING_JS)239 205 DOMString[] stringArrayFunction(in DOMString[] values) raises(DOMException); 240 206 DOMStringList domStringListFunction(in DOMStringList values) raises(DOMException); … … 297 263 attribute long? nullableStringValue 298 264 getter raises(DOMException); 299 300 #if defined(TESTING_V8)301 [V8PerWorldBindings] readonly attribute TestObj perWorldReadOnlyAttribute;302 [V8PerWorldBindings] attribute TestObj perWorldAttribute;303 [V8PerWorldBindings] void perWorldMethod();304 [V8PerWorldBindings] void overloadedPerWorldMethod(in long longArg);305 [V8PerWorldBindings] void overloadedPerWorldMethod(in DOMString strArg, in long longArg);306 #endif307 265 }; -
trunk/Source/WebCore/css/CSSFontFaceLoadEvent.idl
r145787 r147857 31 31 [ 32 32 Conditional=FONT_LOAD_EVENTS, 33 V8EnabledAtRuntime=fontLoadEvents,34 33 JSNoStaticTables, 35 34 ConstructorTemplate=Event -
trunk/Source/WebCore/css/CSSHostRule.idl
r140115 r147857 22 22 [ 23 23 Conditional=SHADOW_DOM, 24 V8EnabledAtRuntime=shadowDOM25 24 ] interface CSSHostRule : CSSRule { 26 25 readonly attribute CSSRuleList cssRules; -
trunk/Source/WebCore/css/CSSRule.idl
r143863 r147857 26 26 CustomToJSObject, 27 27 ObjCPolymorphic, 28 V8DependentLifetime,29 V8SkipVTableValidation30 28 ] interface CSSRule { 31 29 -
trunk/Source/WebCore/css/CSSRuleList.idl
r141034 r147857 28 28 JSCustomIsReachable, 29 29 IndexedGetter, 30 V8DependentLifetime,31 V8SkipVTableValidation32 30 ] interface CSSRuleList { 33 31 readonly attribute unsigned long length; -
trunk/Source/WebCore/css/CSSStyleDeclaration.idl
r143863 r147857 26 26 JSCustomGetOwnPropertySlotAndDescriptor, 27 27 CustomNamedSetter, 28 #if defined(V8_BINDING) && V8_BINDING29 NamedGetter,30 #endif31 28 IndexedGetter, 32 29 CustomEnumerateProperty, 33 V8DependentLifetime,34 V8SkipVTableValidation35 30 ] interface CSSStyleDeclaration { 36 31 [TreatReturnedNullStringAs=Null, TreatNullAs=NullString] attribute DOMString cssText -
trunk/Source/WebCore/css/CSSStyleSheet.idl
r131172 r147857 20 20 21 21 // Introduced in DOM Level 2: 22 [ 23 V8GenerateIsReachable=ImplOwnerNodeRoot 24 ] interface CSSStyleSheet : StyleSheet { 22 interface CSSStyleSheet : StyleSheet { 25 23 readonly attribute CSSRule ownerRule; 26 24 readonly attribute CSSRuleList cssRules; -
trunk/Source/WebCore/css/CSSValue.idl
r141034 r147857 24 24 JSCustomFinalize, 25 25 ObjCPolymorphic, 26 V8DependentLifetime,27 26 ImplementationLacksVTable 28 27 ] interface CSSValue { -
trunk/Source/WebCore/css/FontLoader.idl
r145787 r147857 31 31 [ 32 32 Conditional=FONT_LOAD_EVENTS, 33 V8EnabledAtRuntime=fontLoadEvents,34 33 ActiveDOMObject, 35 34 EventTarget, -
trunk/Source/WebCore/css/StyleSheet.idl
r143863 r147857 26 26 CustomToJSObject, 27 27 ObjCPolymorphic, 28 V8GenerateIsReachable=ImplOwnerNodeRoot29 28 ] interface StyleSheet { 30 29 [TreatReturnedNullStringAs=Null] readonly attribute DOMString type; -
trunk/Source/WebCore/css/WebKitCSSRegionRule.idl
r137835 r147857 30 30 [ 31 31 Conditional=CSS_REGIONS, 32 V8EnabledAtRuntime=cssRegions,33 32 ] interface WebKitCSSRegionRule : CSSRule { 34 33 readonly attribute CSSRuleList cssRules; -
trunk/Source/WebCore/dom/Clipboard.idl
r141034 r147857 27 27 */ 28 28 29 [ 30 V8SkipVTableValidation 31 ] interface Clipboard { 29 interface Clipboard { 32 30 [TreatReturnedNullStringAs=Undefined] attribute DOMString dropEffect; 33 31 [TreatReturnedNullStringAs=Undefined] attribute DOMString effectAllowed; … … 42 40 raises(DOMException); 43 41 44 [Conditional=DATA_TRANSFER_ITEMS , V8EnabledAtRuntime=DataTransferItems] readonly attribute DataTransferItemList items;42 [Conditional=DATA_TRANSFER_ITEMS] readonly attribute DataTransferItemList items; 45 43 }; 46 44 -
trunk/Source/WebCore/dom/CustomElementConstructor.idl
r143865 r147857 25 25 [ 26 26 Conditional=CUSTOM_ELEMENTS, 27 V8EnabledAtRuntime=customDOMElements,28 V8WrapAsFunction,29 27 CustomCall 30 28 ] interface CustomElementConstructor { -
trunk/Source/WebCore/dom/CustomEvent.idl
r142935 r147857 29 29 ConstructorTemplate=Event 30 30 ] interface CustomEvent : Event { 31 [InitializedByEventConstructor , V8Custom] readonly attribute any detail;31 [InitializedByEventConstructor] readonly attribute any detail; 32 32 33 33 void initCustomEvent(in [Optional=DefaultIsUndefined] DOMString typeArg, -
trunk/Source/WebCore/dom/DOMExceptions.in
r136869 r147857 9 9 XMLHttpRequestException 10 10 XPathException 11 -
trunk/Source/WebCore/dom/DOMNamedFlowCollection.idl
r141034 r147857 30 30 [ 31 31 Conditional=CSS_REGIONS, 32 V8EnabledAtRuntime=cssRegions,33 32 InterfaceName=WebKitNamedFlowCollection, 34 33 JSGenerateToJSObject, -
trunk/Source/WebCore/dom/DOMStringMap.idl
r141034 r147857 30 30 CustomEnumerateProperty, 31 31 CustomNamedSetter, 32 V8SkipVTableValidation33 32 ] interface DOMStringMap { 34 33 }; -
trunk/Source/WebCore/dom/DataTransferItemList.idl
r141034 r147857 33 33 IndexedGetter, 34 34 JSGenerateToNativeObject, 35 #if defined(V8_BINDING) && V8_BINDING36 CustomDeleteProperty,37 #endif38 35 ImplementationLacksVTable 39 36 ] interface DataTransferItemList { -
trunk/Source/WebCore/dom/Document.idl
r146785 r147857 30 30 readonly attribute Element documentElement; 31 31 32 [ReturnNewObject , V8DeliverCustomElementCallbacks, V8PerWorldBindings]32 [ReturnNewObject] 33 33 Element createElement(in [TreatNullAs=NullString,Optional=DefaultIsUndefined] DOMString tagName) 34 34 raises (DOMException); 35 35 DocumentFragment createDocumentFragment(); 36 [ReturnNewObject , V8PerWorldBindings] Text createTextNode(in [Optional=DefaultIsUndefined] DOMString data);36 [ReturnNewObject] Text createTextNode(in [Optional=DefaultIsUndefined] DOMString data); 37 37 [ReturnNewObject] Comment createComment(in [Optional=DefaultIsUndefined] DOMString data); 38 38 [ReturnNewObject] CDATASection createCDATASection(in [Optional=DefaultIsUndefined] DOMString data) … … 45 45 [ReturnNewObject] EntityReference createEntityReference(in [Optional=DefaultIsUndefined] DOMString name) 46 46 raises(DOMException); 47 [V8PerWorldBindings] NodeListgetElementsByTagName(in [Optional=DefaultIsUndefined] DOMString tagname);47 NodeList getElementsByTagName(in [Optional=DefaultIsUndefined] DOMString tagname); 48 48 49 49 // Introduced in DOM Level 2: 50 50 51 [ObjCLegacyUnnamedParameters, ReturnNewObject , V8DeliverCustomElementCallbacks]51 [ObjCLegacyUnnamedParameters, ReturnNewObject] 52 52 Node importNode(in [Optional=DefaultIsUndefined] Node importedNode, 53 53 in [Optional] boolean deep) 54 54 raises (DOMException); 55 [ObjCLegacyUnnamedParameters, ReturnNewObject , V8DeliverCustomElementCallbacks]55 [ObjCLegacyUnnamedParameters, ReturnNewObject] 56 56 Element createElementNS(in [TreatNullAs=NullString,Optional=DefaultIsUndefined] DOMString namespaceURI, 57 57 in [TreatNullAs=NullString,Optional=DefaultIsUndefined] DOMString qualifiedName) … … 62 62 [ObjCLegacyUnnamedParameters] NodeList getElementsByTagNameNS(in [TreatNullAs=NullString,Optional=DefaultIsUndefined] DOMString namespaceURI, 63 63 in [Optional=DefaultIsUndefined] DOMString localName); 64 [V8PerWorldBindings] ElementgetElementById(in [Optional=DefaultIsUndefined] DOMString elementId);64 Element getElementById(in [Optional=DefaultIsUndefined] DOMString elementId); 65 65 66 66 // DOM Level 3 Core … … 127 127 raises(DOMException); 128 128 XPathNSResolver createNSResolver(in Node nodeResolver); 129 [ObjCLegacyUnnamedParameters , V8Custom] XPathResult evaluate(in [Optional=DefaultIsUndefined] DOMString expression,129 [ObjCLegacyUnnamedParameters] XPathResult evaluate(in [Optional=DefaultIsUndefined] DOMString expression, 130 130 in [Optional=DefaultIsUndefined] Node contextNode, 131 131 in [Optional=DefaultIsUndefined] XPathNSResolver resolver, … … 135 135 136 136 // Common extensions 137 [V8DeliverCustomElementCallbacks]138 137 boolean execCommand(in [Optional=DefaultIsUndefined] DOMString command, 139 138 in [Optional=DefaultIsUndefined] boolean userInterface, … … 180 179 readonly attribute DOMString lastModified; 181 180 182 [V8PerWorldBindings]NodeList getElementsByName(in [Optional=DefaultIsUndefined] DOMString elementName);181 NodeList getElementsByName(in [Optional=DefaultIsUndefined] DOMString elementName); 183 182 184 183 #if defined(ENABLE_MICRODATA) && ENABLE_MICRODATA … … 250 249 #if defined(ENABLE_FULLSCREEN_API) && ENABLE_FULLSCREEN_API 251 250 // Mozilla version 252 [V8EnabledAtRuntime]readonly attribute boolean webkitIsFullScreen;253 [V8EnabledAtRuntime]readonly attribute boolean webkitFullScreenKeyboardInputAllowed;254 [V8EnabledAtRuntime]readonly attribute Element webkitCurrentFullScreenElement;255 [V8EnabledAtRuntime]void webkitCancelFullScreen();251 readonly attribute boolean webkitIsFullScreen; 252 readonly attribute boolean webkitFullScreenKeyboardInputAllowed; 253 readonly attribute Element webkitCurrentFullScreenElement; 254 void webkitCancelFullScreen(); 256 255 257 256 // W3C version 258 [V8EnabledAtRuntime]readonly attribute boolean webkitFullscreenEnabled;259 [V8EnabledAtRuntime]readonly attribute Element webkitFullscreenElement;260 [V8EnabledAtRuntime]void webkitExitFullscreen();257 readonly attribute boolean webkitFullscreenEnabled; 258 readonly attribute Element webkitFullscreenElement; 259 void webkitExitFullscreen(); 261 260 #endif 262 261 … … 264 263 [Conditional=POINTER_LOCK] readonly attribute Element webkitPointerLockElement; 265 264 266 [Conditional=CSS_REGIONS , V8EnabledAtRuntime=cssRegions] DOMNamedFlowCollection webkitGetNamedFlows();265 [Conditional=CSS_REGIONS] DOMNamedFlowCollection webkitGetNamedFlows(); 267 266 268 267 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT 269 [Conditional=FONT_LOAD_EVENTS , V8EnabledAtRuntime=fontLoadEvents] readonly attribute FontLoader fontloader;268 [Conditional=FONT_LOAD_EVENTS] readonly attribute FontLoader fontloader; 270 269 #endif 271 270 … … 337 336 [NotEnumerable] attribute EventListener onselectstart; 338 337 [NotEnumerable] attribute EventListener onselectionchange; 339 [NotEnumerable,Conditional=TOUCH_EVENTS ,V8EnabledAtRuntime=touch] attribute EventListener ontouchstart;340 [NotEnumerable,Conditional=TOUCH_EVENTS ,V8EnabledAtRuntime=touch] attribute EventListener ontouchmove;341 [NotEnumerable,Conditional=TOUCH_EVENTS ,V8EnabledAtRuntime=touch] attribute EventListener ontouchend;342 [NotEnumerable,Conditional=TOUCH_EVENTS ,V8EnabledAtRuntime=touch] attribute EventListener ontouchcancel;338 [NotEnumerable,Conditional=TOUCH_EVENTS] attribute EventListener ontouchstart; 339 [NotEnumerable,Conditional=TOUCH_EVENTS] attribute EventListener ontouchmove; 340 [NotEnumerable,Conditional=TOUCH_EVENTS] attribute EventListener ontouchend; 341 [NotEnumerable,Conditional=TOUCH_EVENTS] attribute EventListener ontouchcancel; 343 342 [NotEnumerable, Conditional=FULLSCREEN_API] attribute EventListener onwebkitfullscreenchange; 344 343 [NotEnumerable, Conditional=FULLSCREEN_API] attribute EventListener onwebkitfullscreenerror; 345 344 [NotEnumerable, Conditional=POINTER_LOCK] attribute EventListener onwebkitpointerlockchange; 346 345 [NotEnumerable, Conditional=POINTER_LOCK] attribute EventListener onwebkitpointerlockerror; 347 [NotEnumerable, Conditional=CSP_NEXT , V8EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] attribute EventListener onsecuritypolicyviolation;346 [NotEnumerable, Conditional=CSP_NEXT] attribute EventListener onsecuritypolicyviolation; 348 347 #endif 349 348 350 349 #if defined(ENABLE_TOUCH_EVENTS) && ENABLE_TOUCH_EVENTS 351 [ReturnNewObject , V8EnabledAtRuntime=touch] Touch createTouch(in [Optional=DefaultIsUndefined] DOMWindow window,350 [ReturnNewObject] Touch createTouch(in [Optional=DefaultIsUndefined] DOMWindow window, 352 351 in [Optional=DefaultIsUndefined] EventTarget target, 353 352 in [Optional=DefaultIsUndefined] long identifier, … … 361 360 in [Optional=DefaultIsUndefined] float webkitForce) 362 361 raises (DOMException); 363 [ReturnNewObject, V8EnabledAtRuntime=touch,Custom] TouchList createTouchList()362 [ReturnNewObject, Custom] TouchList createTouchList() 364 363 raises (DOMException); 365 364 #endif 366 365 367 366 #if defined(ENABLE_CUSTOM_ELEMENTS) && ENABLE_CUSTOM_ELEMENTS 368 [ V8EnabledAtRuntime=customDOMElements, Conditional=CUSTOM_ELEMENTS, ImplementedAs=registerElement, CallWith=ScriptState, V8DeliverCustomElementCallbacks]367 [Conditional=CUSTOM_ELEMENTS, ImplementedAs=registerElement, CallWith=ScriptState] 369 368 CustomElementConstructor webkitRegister(in DOMString name, in [Optional] Dictionary options) raises(DOMException); 370 [ReturnNewObject , V8DeliverCustomElementCallbacks, V8PerWorldBindings]369 [ReturnNewObject] 371 370 Element createElement(in DOMString localName, in [TreatNullAs=NullString] DOMString typeExtension) raises (DOMException); 372 [ReturnNewObject , V8DeliverCustomElementCallbacks]371 [ReturnNewObject] 373 372 Element createElementNS(in [TreatNullAs=NullString] DOMString namespaceURI, in DOMString qualifiedName, 374 373 in [TreatNullAs=NullString] DOMString typeExtension) raises (DOMException); … … 385 384 386 385 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-file/tip/csp-specification.dev.html#script-interfaces 387 [Conditional=CSP_NEXT , V8EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attribute DOMSecurityPolicy securityPolicy;386 [Conditional=CSP_NEXT] readonly attribute DOMSecurityPolicy securityPolicy; 388 387 389 388 }; -
trunk/Source/WebCore/dom/DocumentFragment.idl
r141034 r147857 18 18 */ 19 19 20 [ 21 V8SkipVTableValidation 22 ] interface DocumentFragment : Node { 20 interface DocumentFragment : Node { 23 21 // NodeSelector - Selector API 24 22 Element querySelector(in DOMString selectors) -
trunk/Source/WebCore/dom/Element.idl
r146785 r147857 22 22 JSGenerateToNativeObject, 23 23 JSInlineGetOwnPropertySlot, 24 V8CustomToJSObject,25 V8SkipVTableValidation26 24 ] interface Element : Node { 27 25 28 26 // DOM Level 1 Core 29 27 30 [TreatReturnedNullStringAs=Null , V8PerWorldBindings] readonly attribute DOMString tagName;28 [TreatReturnedNullStringAs=Null] readonly attribute DOMString tagName; 31 29 32 30 [TreatReturnedNullStringAs=Null] DOMString getAttribute(in [Optional=DefaultIsUndefined] DOMString name); … … 40 38 Attr removeAttributeNode(in [Optional=DefaultIsUndefined] Attr oldAttr) 41 39 raises(DOMException); 42 [V8PerWorldBindings]NodeList getElementsByTagName(in [Optional=DefaultIsUndefined] DOMString name);40 NodeList getElementsByTagName(in [Optional=DefaultIsUndefined] DOMString name); 43 41 44 42 #if !defined(LANGUAGE_OBJECTIVE_C) 45 43 // For ObjC this is defined on Node for legacy support. 46 [V8PerWorldBindings]readonly attribute NamedNodeMap attributes;44 readonly attribute NamedNodeMap attributes; 47 45 boolean hasAttributes(); 48 46 #endif … … 68 66 in [Optional=DefaultIsUndefined] DOMString localName); 69 67 70 [V8PerWorldBindings]readonly attribute CSSStyleDeclaration style;68 readonly attribute CSSStyleDeclaration style; 71 69 72 70 // Common extensions 73 71 74 [V8PerWorldBindings]readonly attribute long offsetLeft;75 [V8PerWorldBindings]readonly attribute long offsetTop;76 [V8PerWorldBindings]readonly attribute long offsetWidth;77 [V8PerWorldBindings]readonly attribute long offsetHeight;78 [ImplementedAs=bindingsOffsetParent , V8PerWorldBindings] readonly attribute Element offsetParent;79 [V8PerWorldBindings]readonly attribute long clientLeft;80 [V8PerWorldBindings]readonly attribute long clientTop;81 [V8PerWorldBindings]readonly attribute long clientWidth;82 [V8PerWorldBindings]readonly attribute long clientHeight;83 [V8PerWorldBindings]attribute long scrollLeft;84 [V8PerWorldBindings]attribute long scrollTop;85 [V8PerWorldBindings]readonly attribute long scrollWidth;86 [V8PerWorldBindings]readonly attribute long scrollHeight;72 readonly attribute long offsetLeft; 73 readonly attribute long offsetTop; 74 readonly attribute long offsetWidth; 75 readonly attribute long offsetHeight; 76 [ImplementedAs=bindingsOffsetParent] readonly attribute Element offsetParent; 77 readonly attribute long clientLeft; 78 readonly attribute long clientTop; 79 readonly attribute long clientWidth; 80 readonly attribute long clientHeight; 81 attribute long scrollLeft; 82 attribute long scrollTop; 83 readonly attribute long scrollWidth; 84 readonly attribute long scrollHeight; 87 85 88 86 void focus(); … … 99 97 NodeList getElementsByClassName(in [Optional=DefaultIsUndefined] DOMString name); 100 98 101 [Reflect=class , V8PerWorldBindings] attribute DOMString className;102 [V8PerWorldBindings]readonly attribute DOMTokenList classList;99 [Reflect=class] attribute DOMString className; 100 readonly attribute DOMTokenList classList; 103 101 104 102 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT 105 [V8PerWorldBindings]readonly attribute DOMStringMap dataset;103 readonly attribute DOMStringMap dataset; 106 104 #endif 107 105 … … 117 115 118 116 // ElementTraversal API 119 [V8PerWorldBindings]readonly attribute Element firstElementChild;120 [V8PerWorldBindings]readonly attribute Element lastElementChild;121 [V8PerWorldBindings]readonly attribute Element previousElementSibling;122 [V8PerWorldBindings]readonly attribute Element nextElementSibling;123 [V8PerWorldBindings]readonly attribute unsigned long childElementCount;117 readonly attribute Element firstElementChild; 118 readonly attribute Element lastElementChild; 119 readonly attribute Element previousElementSibling; 120 readonly attribute Element nextElementSibling; 121 readonly attribute unsigned long childElementCount; 124 122 125 123 // ShadowAware API 126 124 #if defined(ENABLE_SHADOW_DOM) && ENABLE_SHADOW_DOM && defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT 127 [Reflect=pseudo, V8EnabledAtRuntime=shadowDOM, ImplementedAs=pseudo, V8PerWorldBindings] attribute DOMString webkitPseudo;128 [ V8EnabledAtRuntime=shadowDOM,ImplementedAs=createShadowRoot] ShadowRoot webkitCreateShadowRoot() raises(DOMException);129 [ V8EnabledAtRuntime=shadowDOM, ImplementedAs=shadowRoot, V8PerWorldBindings] readonly attribute ShadowRoot webkitShadowRoot;130 [ V8EnabledAtRuntime=shadowDOM, ImplementedAs=insertionParentForBinding, V8PerWorldBindings] readonly attribute Node webkitInsertionParent;125 [Reflect=pseudo, ImplementedAs=pseudo] attribute DOMString webkitPseudo; 126 [ImplementedAs=createShadowRoot] ShadowRoot webkitCreateShadowRoot() raises(DOMException); 127 [ImplementedAs=shadowRoot] readonly attribute ShadowRoot webkitShadowRoot; 128 [ImplementedAs=insertionParentForBinding] readonly attribute Node webkitInsertionParent; 131 129 #endif 132 130 … … 143 141 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C 144 142 // Objective-C extensions 145 [V8PerWorldBindings]readonly attribute DOMString innerText;143 readonly attribute DOMString innerText; 146 144 #endif 147 145 … … 149 147 // Mozilla version 150 148 const unsigned short ALLOW_KEYBOARD_INPUT = 1; 151 [V8EnabledAtRuntime]void webkitRequestFullScreen(in [Optional=DefaultIsUndefined] unsigned short flags);149 void webkitRequestFullScreen(in [Optional=DefaultIsUndefined] unsigned short flags); 152 150 153 151 // W3C version 154 [V8EnabledAtRuntime]void webkitRequestFullscreen();152 void webkitRequestFullscreen(); 155 153 #endif 156 154 … … 158 156 159 157 // CSS Regions API 160 [Conditional=CSS_REGIONS , V8EnabledAtRuntime=cssRegions, V8PerWorldBindings] readonly attribute DOMString webkitRegionOverset;161 [Conditional=CSS_REGIONS , V8EnabledAtRuntime=cssRegions] sequence<Range> webkitGetRegionFlowRanges();158 [Conditional=CSS_REGIONS] readonly attribute DOMString webkitRegionOverset; 159 [Conditional=CSS_REGIONS] sequence<Range> webkitGetRegionFlowRanges(); 162 160 163 161 #if !defined(LANGUAGE_OBJECTIVE_C) || !LANGUAGE_OBJECTIVE_C 164 162 // Event handler DOM attributes 165 [NotEnumerable , V8PerWorldBindings] attribute EventListener onabort;166 [NotEnumerable , V8PerWorldBindings] attribute EventListener onblur;167 [NotEnumerable , V8PerWorldBindings] attribute EventListener onchange;168 [NotEnumerable , V8PerWorldBindings] attribute EventListener onclick;169 [NotEnumerable , V8PerWorldBindings] attribute EventListener oncontextmenu;170 [NotEnumerable , V8PerWorldBindings] attribute EventListener ondblclick;171 [NotEnumerable , V8PerWorldBindings] attribute EventListener ondrag;172 [NotEnumerable , V8PerWorldBindings] attribute EventListener ondragend;173 [NotEnumerable , V8PerWorldBindings] attribute EventListener ondragenter;174 [NotEnumerable , V8PerWorldBindings] attribute EventListener ondragleave;175 [NotEnumerable , V8PerWorldBindings] attribute EventListener ondragover;176 [NotEnumerable , V8PerWorldBindings] attribute EventListener ondragstart;177 [NotEnumerable , V8PerWorldBindings] attribute EventListener ondrop;178 [NotEnumerable , V8PerWorldBindings] attribute EventListener onerror;179 [NotEnumerable , V8PerWorldBindings] attribute EventListener onfocus;180 [NotEnumerable , V8PerWorldBindings] attribute EventListener oninput;181 [NotEnumerable , V8PerWorldBindings] attribute EventListener oninvalid;182 [NotEnumerable , V8PerWorldBindings] attribute EventListener onkeydown;183 [NotEnumerable , V8PerWorldBindings] attribute EventListener onkeypress;184 [NotEnumerable , V8PerWorldBindings] attribute EventListener onkeyup;185 [NotEnumerable , V8PerWorldBindings] attribute EventListener onload;186 [NotEnumerable , V8PerWorldBindings] attribute EventListener onmousedown;187 [NotEnumerable , V8PerWorldBindings] attribute EventListener onmousemove;188 [NotEnumerable , V8PerWorldBindings] attribute EventListener onmouseout;189 [NotEnumerable , V8PerWorldBindings] attribute EventListener onmouseover;190 [NotEnumerable , V8PerWorldBindings] attribute EventListener onmouseup;191 [NotEnumerable , V8PerWorldBindings] attribute EventListener onmousewheel;192 [NotEnumerable , V8PerWorldBindings] attribute EventListener onscroll;193 [NotEnumerable , V8PerWorldBindings] attribute EventListener onselect;194 [NotEnumerable , V8PerWorldBindings] attribute EventListener onsubmit;163 [NotEnumerable] attribute EventListener onabort; 164 [NotEnumerable] attribute EventListener onblur; 165 [NotEnumerable] attribute EventListener onchange; 166 [NotEnumerable] attribute EventListener onclick; 167 [NotEnumerable] attribute EventListener oncontextmenu; 168 [NotEnumerable] attribute EventListener ondblclick; 169 [NotEnumerable] attribute EventListener ondrag; 170 [NotEnumerable] attribute EventListener ondragend; 171 [NotEnumerable] attribute EventListener ondragenter; 172 [NotEnumerable] attribute EventListener ondragleave; 173 [NotEnumerable] attribute EventListener ondragover; 174 [NotEnumerable] attribute EventListener ondragstart; 175 [NotEnumerable] attribute EventListener ondrop; 176 [NotEnumerable] attribute EventListener onerror; 177 [NotEnumerable] attribute EventListener onfocus; 178 [NotEnumerable] attribute EventListener oninput; 179 [NotEnumerable] attribute EventListener oninvalid; 180 [NotEnumerable] attribute EventListener onkeydown; 181 [NotEnumerable] attribute EventListener onkeypress; 182 [NotEnumerable] attribute EventListener onkeyup; 183 [NotEnumerable] attribute EventListener onload; 184 [NotEnumerable] attribute EventListener onmousedown; 185 [NotEnumerable] attribute EventListener onmousemove; 186 [NotEnumerable] attribute EventListener onmouseout; 187 [NotEnumerable] attribute EventListener onmouseover; 188 [NotEnumerable] attribute EventListener onmouseup; 189 [NotEnumerable] attribute EventListener onmousewheel; 190 [NotEnumerable] attribute EventListener onscroll; 191 [NotEnumerable] attribute EventListener onselect; 192 [NotEnumerable] attribute EventListener onsubmit; 195 193 196 194 // attribute [NotEnumerable] EventListener oncanplay; … … 218 216 219 217 // WebKit extensions 220 [NotEnumerable , V8PerWorldBindings] attribute EventListener onbeforecut;221 [NotEnumerable , V8PerWorldBindings] attribute EventListener oncut;222 [NotEnumerable , V8PerWorldBindings] attribute EventListener onbeforecopy;223 [NotEnumerable , V8PerWorldBindings] attribute EventListener oncopy;224 [NotEnumerable , V8PerWorldBindings] attribute EventListener onbeforepaste;225 [NotEnumerable , V8PerWorldBindings] attribute EventListener onpaste;226 [NotEnumerable , V8PerWorldBindings] attribute EventListener onreset;227 [NotEnumerable , V8PerWorldBindings] attribute EventListener onsearch;228 [NotEnumerable , V8PerWorldBindings] attribute EventListener onselectstart;229 [NotEnumerable,Conditional=TOUCH_EVENTS ,V8EnabledAtRuntime=touch, V8PerWorldBindings] attribute EventListener ontouchstart;230 [NotEnumerable,Conditional=TOUCH_EVENTS ,V8EnabledAtRuntime=touch, V8PerWorldBindings] attribute EventListener ontouchmove;231 [NotEnumerable,Conditional=TOUCH_EVENTS ,V8EnabledAtRuntime=touch, V8PerWorldBindings] attribute EventListener ontouchend;232 [NotEnumerable,Conditional=TOUCH_EVENTS ,V8EnabledAtRuntime=touch, V8PerWorldBindings] attribute EventListener ontouchcancel;233 [NotEnumerable, Conditional=FULLSCREEN_API , V8PerWorldBindings] attribute EventListener onwebkitfullscreenchange;234 [NotEnumerable, Conditional=FULLSCREEN_API , V8PerWorldBindings] attribute EventListener onwebkitfullscreenerror;218 [NotEnumerable] attribute EventListener onbeforecut; 219 [NotEnumerable] attribute EventListener oncut; 220 [NotEnumerable] attribute EventListener onbeforecopy; 221 [NotEnumerable] attribute EventListener oncopy; 222 [NotEnumerable] attribute EventListener onbeforepaste; 223 [NotEnumerable] attribute EventListener onpaste; 224 [NotEnumerable] attribute EventListener onreset; 225 [NotEnumerable] attribute EventListener onsearch; 226 [NotEnumerable] attribute EventListener onselectstart; 227 [NotEnumerable,Conditional=TOUCH_EVENTS] attribute EventListener ontouchstart; 228 [NotEnumerable,Conditional=TOUCH_EVENTS] attribute EventListener ontouchmove; 229 [NotEnumerable,Conditional=TOUCH_EVENTS] attribute EventListener ontouchend; 230 [NotEnumerable,Conditional=TOUCH_EVENTS] attribute EventListener ontouchcancel; 231 [NotEnumerable, Conditional=FULLSCREEN_API] attribute EventListener onwebkitfullscreenchange; 232 [NotEnumerable, Conditional=FULLSCREEN_API] attribute EventListener onwebkitfullscreenerror; 235 233 #endif 236 234 }; -
trunk/Source/WebCore/dom/Event.idl
r141034 r147857 25 25 JSNoStaticTables, 26 26 ObjCPolymorphic, 27 V8SkipVTableValidation28 27 ] interface Event { 29 28 -
trunk/Source/WebCore/dom/EventNames.in
r146305 r147857 59 59 CSSFontFaceLoadEvent conditional=FONT_LOAD_EVENTS 60 60 SecurityPolicyViolationEvent conditional=CSP_NEXT 61 -
trunk/Source/WebCore/dom/EventTarget.idl
r141730 r147857 26 26 CustomToJSObject, 27 27 JSCustomToNativeObject, 28 V8NoWrapperCache,29 28 EventTarget 30 29 ] interface EventTarget { -
trunk/Source/WebCore/dom/EventTargetFactory.in
r145787 r147857 43 43 XMLHttpRequest 44 44 XMLHttpRequestUpload 45 -
trunk/Source/WebCore/dom/MessageChannel.idl
r141034 r147857 28 28 Constructor, 29 29 CallWith=ScriptExecutionContext, 30 V8CustomConstructor,31 30 JSCustomMarkFunction, 32 31 JSNoStaticTables, -
trunk/Source/WebCore/dom/MouseEvent.idl
r141034 r147857 21 21 ConstructorConditional=DOM4_EVENTS_CONSTRUCTOR, 22 22 ConstructorTemplate=Event, 23 V8SkipVTableValidation24 23 ] interface MouseEvent : UIEvent { 25 24 [InitializedByEventConstructor] readonly attribute long screenX; -
trunk/Source/WebCore/dom/MutationRecord.idl
r141034 r147857 29 29 */ 30 30 31 [ 32 V8SkipVTableValidation 33 ] interface MutationRecord { 31 interface MutationRecord { 34 32 readonly attribute DOMString type; 35 33 readonly attribute Node target; -
trunk/Source/WebCore/dom/NamedNodeMap.idl
r144419 r147857 23 23 IndexedGetter, 24 24 NamedGetter, 25 V8CustomIndexedGetter,26 25 ImplementationLacksVTable 27 26 ] interface NamedNodeMap { -
trunk/Source/WebCore/dom/Node.idl
r146785 r147857 30 30 JSInlineGetOwnPropertySlot, 31 31 ObjCPolymorphic, 32 V8DependentLifetime33 32 ] interface Node 34 33 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C … … 50 49 const unsigned short NOTATION_NODE = 12; 51 50 52 readonly attribute [TreatReturnedNullStringAs=Null , V8PerWorldBindings] DOMString nodeName;51 readonly attribute [TreatReturnedNullStringAs=Null] DOMString nodeName; 53 52 54 53 // FIXME: the spec says this can also raise on retrieval. 55 attribute [TreatReturnedNullStringAs=Null, TreatNullAs=NullString , V8PerWorldBindings] DOMString nodeValue54 attribute [TreatReturnedNullStringAs=Null, TreatNullAs=NullString] DOMString nodeValue 56 55 setter raises(DOMException); 57 56 58 readonly attribute [V8PerWorldBindings]unsigned short nodeType;59 readonly attribute [V8PerWorldBindings]Node parentNode;60 readonly attribute [V8PerWorldBindings]NodeList childNodes;61 readonly attribute [V8PerWorldBindings]Node firstChild;62 readonly attribute [V8PerWorldBindings]Node lastChild;63 readonly attribute [V8PerWorldBindings]Node previousSibling;64 readonly attribute [V8PerWorldBindings]Node nextSibling;65 readonly attribute [V8PerWorldBindings]Document ownerDocument;57 readonly attribute unsigned short nodeType; 58 readonly attribute Node parentNode; 59 readonly attribute NodeList childNodes; 60 readonly attribute Node firstChild; 61 readonly attribute Node lastChild; 62 readonly attribute Node previousSibling; 63 readonly attribute Node nextSibling; 64 readonly attribute Document ownerDocument; 66 65 67 [ObjCLegacyUnnamedParameters, Custom , V8PerWorldBindings] Node insertBefore(in [CustomReturn] Node newChild,66 [ObjCLegacyUnnamedParameters, Custom] Node insertBefore(in [CustomReturn] Node newChild, 68 67 in Node refChild) 69 68 raises(DOMException); … … 71 70 in [CustomReturn] Node oldChild) 72 71 raises(DOMException); 73 [Custom , V8PerWorldBindings] Node removeChild(in [CustomReturn] Node oldChild)72 [Custom] Node removeChild(in [CustomReturn] Node oldChild) 74 73 raises(DOMException); 75 [Custom , V8PerWorldBindings] Node appendChild(in [CustomReturn] Node newChild)74 [Custom] Node appendChild(in [CustomReturn] Node newChild) 76 75 raises(DOMException); 77 76 78 77 boolean hasChildNodes(); 79 [V8DeliverCustomElementCallbacks, V8PerWorldBindings]80 78 Node cloneNode(in [Optional=DefaultIsUndefined] boolean deep); 81 79 void normalize(); … … 86 84 in [TreatNullAs=NullString,Optional=DefaultIsUndefined] DOMString version); 87 85 88 readonly attribute [TreatReturnedNullStringAs=Null , V8PerWorldBindings] DOMString namespaceURI;89 attribute [TreatReturnedNullStringAs=Null, TreatNullAs=NullString , V8PerWorldBindings] DOMString prefix86 readonly attribute [TreatReturnedNullStringAs=Null] DOMString namespaceURI; 87 attribute [TreatReturnedNullStringAs=Null, TreatNullAs=NullString] DOMString prefix 90 88 setter raises(DOMException); 91 readonly attribute [TreatReturnedNullStringAs=Null , V8PerWorldBindings] DOMString localName;89 readonly attribute [TreatReturnedNullStringAs=Null] DOMString localName; 92 90 93 91 #if defined(LANGUAGE_OBJECTIVE_C) 94 readonly attribute [V8PerWorldBindings]NamedNodeMap attributes;92 readonly attribute NamedNodeMap attributes; 95 93 boolean hasAttributes(); 96 94 #endif … … 99 97 // Introduced in DOM Level 3: 100 98 101 readonly attribute [TreatReturnedNullStringAs=Null , V8PerWorldBindings] DOMString baseURI;99 readonly attribute [TreatReturnedNullStringAs=Null] DOMString baseURI; 102 100 103 101 // FIXME: the spec says this can also raise on retrieval. 104 attribute [TreatReturnedNullStringAs=Null, TreatNullAs=NullString , V8PerWorldBindings] DOMString textContent102 attribute [TreatReturnedNullStringAs=Null, TreatNullAs=NullString] DOMString textContent 105 103 setter raises(DOMException); 106 104 … … 125 123 126 124 // IE extensions 127 readonly attribute [V8PerWorldBindings]Element parentElement;125 readonly attribute Element parentElement; 128 126 129 127 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C 130 128 // Objective-C extensions 131 readonly attribute [V8PerWorldBindings]boolean isContentEditable;129 readonly attribute boolean isContentEditable; 132 130 133 131 void inspect(); -
trunk/Source/WebCore/dom/NodeList.idl
r141034 r147857 23 23 IndexedGetter, 24 24 NamedGetter, 25 V8DependentLifetime,26 V8SkipVTableValidation27 25 ] interface NodeList { 28 26 -
trunk/Source/WebCore/dom/RequestAnimationFrameCallback.idl
r131172 r147857 35 35 // highResTime is passed as high resolution timestamp, see 36 36 // http://www.w3.org/TR/hr-time/ for details. 37 #if defined(V8_BINDING) && V8_BINDING38 boolean handleEvent(in double highResTime);39 #else40 37 [Custom] boolean handleEvent(in double highResTime); 41 #endif42 43 38 }; -
trunk/Source/WebCore/dom/ShadowRoot.idl
r146583 r147857 33 33 attribute boolean resetStyleInheritance; 34 34 35 [TreatNullAs=NullString , V8DeliverCustomElementCallbacks]35 [TreatNullAs=NullString] 36 36 attribute DOMString innerHTML setter raises(DOMException); 37 37 -
trunk/Source/WebCore/dom/Text.idl
r146555 r147857 17 17 * Boston, MA 02110-1301, USA. 18 18 */ 19 [ 20 V8SkipVTableValidation, 21 ] interface Text : CharacterData { 19 20 interface Text : CharacterData { 22 21 23 22 // DOM Level 1 … … 32 31 // ShadowAware API 33 32 #if defined(ENABLE_SHADOW_DOM) && ENABLE_SHADOW_DOM && defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT 34 [ V8EnabledAtRuntime=shadowDOM, ImplementedAs=insertionParentForBinding, V8PerWorldBindings] readonly attribute Node webkitInsertionParent;33 [ImplementedAs=insertionParentForBinding] readonly attribute Node webkitInsertionParent; 35 34 #endif 36 35 -
trunk/Source/WebCore/history/HistoryItem.cpp
r145789 r147857 721 721 722 722 encoder.encodeBool(m_stateObject); 723 if (m_stateObject) { 724 #if !USE(V8) 723 if (m_stateObject) 725 724 encoder.encodeBytes(m_stateObject->data().data(), m_stateObject->data().size()); 726 #else727 encoder.encodeString(m_stateObject->toWireString());728 #endif729 }730 725 731 726 encoder.encodeString(m_target); … … 833 828 return 0; 834 829 if (hasStateObject) { 835 #if !USE(V8)836 830 Vector<uint8_t> bytes; 837 831 if (!decoder.decodeBytes(bytes)) 838 832 return 0; 839 833 node->m_stateObject = SerializedScriptValue::adopt(bytes); 840 #else841 String string;842 if (!decoder.decodeString(string))843 return 0;844 node->m_stateObject = SerializedScriptValue::createFromWire(string);845 #endif846 834 } 847 835 -
trunk/Source/WebCore/html/DOMSettableTokenList.idl
r142558 r147857 26 26 IndexedGetter, 27 27 JSGenerateToJSObject, 28 V8SkipVTableValidation29 28 ] interface DOMSettableTokenList : DOMTokenList { 30 29 attribute DOMString value; -
trunk/Source/WebCore/html/DOMTokenList.idl
r141034 r147857 26 26 GenerateIsReachable=ImplElementRoot, 27 27 IndexedGetter, 28 V8SkipVTableValidation29 28 ] interface DOMTokenList { 30 29 readonly attribute unsigned long length; -
trunk/Source/WebCore/html/HTMLAllCollection.idl
r141556 r147857 30 30 MasqueradesAsUndefined, 31 31 GenerateIsReachable=ImplOwnerNodeRoot, 32 V8DependentLifetime,33 32 ] interface HTMLAllCollection { 34 33 readonly attribute unsigned long length; -
trunk/Source/WebCore/html/HTMLAppletElement.idl
r144419 r147857 22 22 CustomNamedSetter, 23 23 JSCustomGetOwnPropertySlotAndDescriptor, 24 V8CustomIndexedGetter,25 24 CustomCall 26 25 ] interface HTMLAppletElement : HTMLElement { -
trunk/Source/WebCore/html/HTMLCollection.idl
r141034 r147857 24 24 CustomToJSObject, 25 25 GenerateIsReachable=ImplOwnerNodeRoot, 26 V8DependentLifetime,27 26 ObjCPolymorphic, 28 V8SkipVTableValidation29 27 ] interface HTMLCollection { 30 28 readonly attribute unsigned long length; -
trunk/Source/WebCore/html/HTMLDialogElement.idl
r141034 r147857 26 26 [ 27 27 Conditional=DIALOG_ELEMENT, 28 V8SkipVTableValidation29 28 ] interface HTMLDialogElement : HTMLElement { 30 29 [Reflect] attribute boolean open; -
trunk/Source/WebCore/html/HTMLDivElement.idl
r141034 r147857 18 18 */ 19 19 20 [ 21 V8SkipVTableValidation 22 ] interface HTMLDivElement : HTMLElement { 20 interface HTMLDivElement : HTMLElement { 23 21 [Reflect] attribute DOMString align; 24 22 }; -
trunk/Source/WebCore/html/HTMLDocument.idl
r145040 r147857 21 21 [ 22 22 CustomNamedGetter, 23 V8CustomToJSObject,24 V8SkipVTableValidation25 23 ] interface HTMLDocument : Document { 26 [JSCustom , V8Custom] void open();24 [JSCustom] void open(); 27 25 void close(); 28 26 [Custom] void write(in [Optional=DefaultIsUndefined] DOMString text); -
trunk/Source/WebCore/html/HTMLElement.idl
r146896 r147857 22 22 JSGenerateToNativeObject, 23 23 JSCustomPushEventHandlerScope, 24 V8CustomToJSObject,25 V8SkipVTableValidation26 24 ] interface HTMLElement : Element { 27 25 // iht.com relies on id returning the empty string when no id is present. … … 40 38 41 39 // Extensions 42 [TreatNullAs=NullString , V8DeliverCustomElementCallbacks] attribute DOMString innerHTML40 [TreatNullAs=NullString] attribute DOMString innerHTML 43 41 setter raises(DOMException); 44 42 [TreatNullAs=NullString] attribute DOMString innerText 45 43 setter raises(DOMException); 46 [TreatNullAs=NullString , V8DeliverCustomElementCallbacks] attribute DOMString outerHTML44 [TreatNullAs=NullString] attribute DOMString outerHTML 47 45 setter raises(DOMException); 48 46 [TreatNullAs=NullString] attribute DOMString outerText … … 52 50 in [Optional=DefaultIsUndefined] Element element) 53 51 raises(DOMException); 54 [V8DeliverCustomElementCallbacks]55 52 void insertAdjacentHTML(in [Optional=DefaultIsUndefined] DOMString where, 56 53 in [Optional=DefaultIsUndefined] DOMString html) -
trunk/Source/WebCore/html/HTMLEmbedElement.idl
r147822 r147857 23 23 JSCustomGetOwnPropertySlotAndDescriptor, 24 24 CustomCall, 25 V8CustomIndexedGetter,26 V8SkipVTableValidation27 25 ] interface HTMLEmbedElement : HTMLElement { 28 26 attribute [Reflect] DOMString align; -
trunk/Source/WebCore/html/HTMLFormControlsCollection.idl
r136850 r147857 23 23 NamedGetter, 24 24 GenerateIsReachable=ImplOwnerNodeRoot, 25 V8DependentLifetime,26 25 ] interface HTMLFormControlsCollection : HTMLCollection { 27 26 [Custom] Node namedItem(in [Optional=DefaultIsUndefined] DOMString name); -
trunk/Source/WebCore/html/HTMLFormElement.idl
r144419 r147857 21 21 [ 22 22 IndexedGetter, 23 V8CustomIndexedGetter,24 23 CustomNamedGetter 25 24 ] interface HTMLFormElement : HTMLElement { … … 46 45 47 46 #if defined(ENABLE_REQUEST_AUTOCOMPLETE) && ENABLE_REQUEST_AUTOCOMPLETE 48 [V8EnabledAtRuntime=requestAutocomplete]void requestAutocomplete();49 [ V8EnabledAtRuntime=requestAutocomplete,NotEnumerable] attribute EventListener onautocomplete;50 [ V8EnabledAtRuntime=requestAutocomplete,NotEnumerable] attribute EventListener onautocompleteerror;47 void requestAutocomplete(); 48 [NotEnumerable] attribute EventListener onautocomplete; 49 [NotEnumerable] attribute EventListener onautocompleteerror; 51 50 #endif 52 51 }; -
trunk/Source/WebCore/html/HTMLImageElement.idl
r141034 r147857 21 21 [ 22 22 JSGenerateToNativeObject, 23 V8SkipVTableValidation24 23 ] interface HTMLImageElement : HTMLElement { 25 24 [Reflect] attribute DOMString name; -
trunk/Source/WebCore/html/HTMLInputElement.idl
r141034 r147857 20 20 */ 21 21 22 [ 23 V8SkipVTableValidation 24 ] interface HTMLInputElement : HTMLElement { 22 interface HTMLInputElement : HTMLElement { 25 23 [Reflect] attribute DOMString accept; 26 24 [Reflect] attribute DOMString alt; … … 106 104 [Reflect] attribute DOMString useMap; 107 105 [Reflect] attribute boolean incremental; 108 [Conditional=INPUT_SPEECH, Reflect , V8EnabledAtRuntime] attribute boolean webkitSpeech;109 [Conditional=INPUT_SPEECH, Reflect , V8EnabledAtRuntime] attribute boolean webkitGrammar;106 [Conditional=INPUT_SPEECH, Reflect] attribute boolean webkitSpeech; 107 [Conditional=INPUT_SPEECH, Reflect] attribute boolean webkitGrammar; 110 108 [Conditional=INPUT_SPEECH, NotEnumerable] attribute EventListener onwebkitspeechchange; 111 109 -
trunk/Source/WebCore/html/HTMLMediaElement.idl
r145162 r147857 98 98 99 99 #if defined(ENABLE_ENCRYPTED_MEDIA) && ENABLE_ENCRYPTED_MEDIA 100 [V8EnabledAtRuntime=encryptedMedia]void webkitGenerateKeyRequest(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString keySystem, in [Optional] Uint8Array initData)100 void webkitGenerateKeyRequest(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString keySystem, in [Optional] Uint8Array initData) 101 101 raises (DOMException); 102 [V8EnabledAtRuntime=encryptedMedia]void webkitAddKey(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString keySystem, in Uint8Array key, in [Optional] Uint8Array initData, in [Optional=DefaultIsNullString] DOMString sessionId)102 void webkitAddKey(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString keySystem, in Uint8Array key, in [Optional] Uint8Array initData, in [Optional=DefaultIsNullString] DOMString sessionId) 103 103 raises (DOMException); 104 [V8EnabledAtRuntime=encryptedMedia]void webkitCancelKeyRequest(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString keySystem, in [Optional=DefaultIsNullString] DOMString sessionId)104 void webkitCancelKeyRequest(in [TreatNullAs=NullString, TreatUndefinedAs=NullString] DOMString keySystem, in [Optional=DefaultIsNullString] DOMString sessionId) 105 105 raises (DOMException); 106 106 107 attribute [V8EnabledAtRuntime=encryptedMedia]EventListener onwebkitkeyadded;108 attribute [V8EnabledAtRuntime=encryptedMedia]EventListener onwebkitkeyerror;109 attribute [V8EnabledAtRuntime=encryptedMedia]EventListener onwebkitkeymessage;107 attribute EventListener onwebkitkeyadded; 108 attribute EventListener onwebkitkeyerror; 109 attribute EventListener onwebkitkeymessage; 110 110 #endif 111 attribute [Conditional=ENCRYPTED_MEDIA|ENCRYPTED_MEDIA_V2 , V8EnabledAtRuntime=encryptedMedia] EventListener onwebkitneedkey;111 attribute [Conditional=ENCRYPTED_MEDIA|ENCRYPTED_MEDIA_V2] EventListener onwebkitneedkey; 112 112 #if defined(ENABLE_ENCRYPTED_MEDIA_V2) && ENABLE_ENCRYPTED_MEDIA_V2 113 attribute [V8EnabledAtRuntime=encryptedMedia]MediaKeys mediaKeys;113 attribute MediaKeys mediaKeys; 114 114 #endif 115 115 116 116 #if defined(ENABLE_VIDEO_TRACK) && ENABLE_VIDEO_TRACK 117 [V8EnabledAtRuntime=webkitVideoTrack]TextTrack addTextTrack(in DOMString kind, in [Optional] DOMString label, in [Optional] DOMString language)117 TextTrack addTextTrack(in DOMString kind, in [Optional] DOMString label, in [Optional] DOMString language) 118 118 raises (DOMException); 119 readonly attribute [V8EnabledAtRuntime=webkitVideoTrack]TextTrackList textTracks;119 readonly attribute TextTrackList textTracks; 120 120 #endif 121 121 -
trunk/Source/WebCore/html/HTMLObjectElement.idl
r147822 r147857 22 22 CustomNamedSetter, 23 23 JSCustomGetOwnPropertySlotAndDescriptor, 24 V8CustomIndexedGetter,25 24 CustomCall 26 25 ] interface HTMLObjectElement : HTMLElement { -
trunk/Source/WebCore/html/HTMLOptionsCollection.idl
r144419 r147857 24 24 NamedGetter, 25 25 GenerateIsReachable=ImplOwnerNodeRoot, 26 V8CustomIndexedGetter,27 V8DependentLifetime,28 26 ] interface HTMLOptionsCollection : HTMLCollection { 29 27 attribute long selectedIndex; -
trunk/Source/WebCore/html/HTMLSelectElement.idl
r144419 r147857 22 22 IndexedGetter, 23 23 CustomIndexedSetter, 24 V8CustomIndexedGetter,25 V8SkipVTableValidation26 24 ] interface HTMLSelectElement : HTMLElement { 27 25 attribute [Reflect] boolean autofocus; -
trunk/Source/WebCore/html/HTMLSpanElement.idl
r141034 r147857 25 25 26 26 // http://www.whatwg.org/specs/web-apps/current-work/#htmlspanelement 27 [ 28 V8SkipVTableValidation 29 ] interface HTMLSpanElement : HTMLElement { 27 interface HTMLSpanElement : HTMLElement { 30 28 }; 31 29 -
trunk/Source/WebCore/html/HTMLStyleElement.idl
r131172 r147857 21 21 interface HTMLStyleElement : HTMLElement { 22 22 attribute boolean disabled; 23 [Conditional=STYLE_SCOPED , V8EnabledAtRuntime=styleScoped] attribute boolean scoped;23 [Conditional=STYLE_SCOPED] attribute boolean scoped; 24 24 [Reflect] attribute DOMString media; 25 25 [Reflect] attribute DOMString type; -
trunk/Source/WebCore/html/HTMLTemplateElement.idl
r136903 r147857 32 32 Conditional=TEMPLATE_ELEMENT 33 33 ] interface HTMLTemplateElement : HTMLElement { 34 [JSCustom , V8CacheAttributeForGC] readonly attribute DocumentFragment content;34 [JSCustom] readonly attribute DocumentFragment content; 35 35 }; 36 36 -
trunk/Source/WebCore/html/HTMLTrackElement.idl
r131172 r147857 26 26 [ 27 27 Conditional=VIDEO_TRACK, 28 V8EnabledAtRuntime=webkitVideoTrack29 28 ] interface HTMLTrackElement : HTMLElement { 30 29 attribute DOMString kind; -
trunk/Source/WebCore/html/HTMLUnknownElement.idl
r141034 r147857 27 27 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 28 */ 29 [ 30 V8SkipVTableValidation 31 ] interface HTMLUnknownElement : HTMLElement { 29 30 interface HTMLUnknownElement : HTMLElement { 32 31 }; 33 32 -
trunk/Source/WebCore/html/MediaKeyError.idl
r142327 r147857 26 26 interface [ 27 27 Conditional=ENCRYPTED_MEDIA|ENCRYPTED_MEDIA_V2, 28 V8EnabledAtRuntime=encryptedMedia,29 28 ImplementationLacksVTable 30 29 ] MediaKeyError { -
trunk/Source/WebCore/html/MediaKeyEvent.idl
r131172 r147857 26 26 [ 27 27 Conditional=ENCRYPTED_MEDIA, 28 V8EnabledAtRuntime=encryptedMedia,29 28 ConstructorTemplate=Event 30 29 ] interface MediaKeyEvent : Event { -
trunk/Source/WebCore/html/MicroDataItemValue.idl
r134447 r147857 33 33 CustomToJSObject, 34 34 OmitConstructor, 35 V8NoWrapperCache36 35 ] interface MicroDataItemValue { 37 36 }; -
trunk/Source/WebCore/html/canvas/CanvasRenderingContext2D.idl
r147133 r147857 79 79 attribute float lineDashOffset; 80 80 81 // FIXME: These attributes should also be implemented for V8.82 #if !(defined(V8_BINDING) && V8_BINDING)83 81 [Custom] attribute Array webkitLineDash; 84 82 attribute float webkitLineDashOffset; 85 #endif86 83 87 84 void clearRect(in [Optional=DefaultIsUndefined] float x, -
trunk/Source/WebCore/html/canvas/DOMPath.idl
r143502 r147857 28 28 29 29 interface [ 30 V8EnabledAtRuntime=canvasPath,31 30 Constructor, 32 31 Constructor(in DOMPath path), -
trunk/Source/WebCore/html/shadow/HTMLContentElement.idl
r146147 r147857 27 27 [ 28 28 Conditional=SHADOW_DOM, 29 V8EnabledAtRuntime=shadowDOM,30 V8SkipVTableValidation31 29 ] interface HTMLContentElement : HTMLElement { 32 30 [Reflect] attribute DOMString select; -
trunk/Source/WebCore/html/shadow/HTMLShadowElement.idl
r137429 r147857 31 31 [ 32 32 Conditional=SHADOW_DOM, 33 V8EnabledAtRuntime=shadowDOM34 33 ] interface HTMLShadowElement : HTMLElement { 35 34 attribute boolean resetStyleInheritance; -
trunk/Source/WebCore/html/track/TextTrack.idl
r146825 r147857 26 26 [ 27 27 Conditional=VIDEO_TRACK, 28 V8EnabledAtRuntime=webkitVideoTrack,29 28 EventTarget, 30 29 JSCustomMarkFunction, 31 30 JSCustomIsReachable, 32 V8SkipVTableValidation33 31 ] interface TextTrack { 34 32 readonly attribute DOMString kind; -
trunk/Source/WebCore/inspector/InjectedScriptHost.idl
r146840 r147857 50 50 readonly attribute boolean evaluateReturnsEvalFunction; 51 51 52 #if defined(V8_BINDING) && V8_BINDING53 [Custom] any evaluate(in DOMString text);54 #else55 52 [Custom] readonly attribute any evaluate; 56 #endif57 53 58 54 [Custom] DOMString databaseId(in any database); -
trunk/Source/WebCore/inspector/InspectorIndexedDBAgent.cpp
r147029 r147857 625 625 return; 626 626 627 #if USE(V8)628 v8::HandleScope handleScope;629 v8::Handle<v8::Context> context = document->frame()->script()->mainWorldContext();630 ASSERT(!context.IsEmpty());631 v8::Context::Scope contextScope(context);632 #endif633 634 627 ExceptionCode ec = 0; 635 628 RefPtr<IDBRequest> idbRequest = idbFactory->getDatabaseNames(document, ec); … … 651 644 return; 652 645 653 #if USE(V8)654 v8::HandleScope handleScope;655 v8::Handle<v8::Context> context = document->frame()->script()->mainWorldContext();656 ASSERT(!context.IsEmpty());657 v8::Context::Scope contextScope(context);658 #endif659 660 646 RefPtr<DatabaseLoader> databaseLoader = DatabaseLoader::create(document, requestCallback); 661 647 databaseLoader->start(idbFactory, document->securityOrigin(), databaseName); … … 679 665 return; 680 666 } 681 682 #if USE(V8)683 v8::HandleScope handleScope;684 v8::Handle<v8::Context> context = document->frame()->script()->mainWorldContext();685 ASSERT(!context.IsEmpty());686 v8::Context::Scope contextScope(context);687 #endif688 667 689 668 RefPtr<DataLoader> dataLoader = DataLoader::create(document, requestCallback, injectedScript, objectStoreName, indexName, idbKeyRange, skipCount, pageSize); … … 784 763 return; 785 764 786 #if USE(V8)787 v8::HandleScope handleScope;788 v8::Handle<v8::Context> context = document->frame()->script()->mainWorldContext();789 ASSERT(!context.IsEmpty());790 v8::Context::Scope contextScope(context);791 #endif792 793 765 RefPtr<ClearObjectStore> clearObjectStore = ClearObjectStore::create(document, objectStoreName, requestCallback); 794 766 clearObjectStore->start(idbFactory, document->securityOrigin(), databaseName); 795 767 } 768 796 769 } // namespace WebCore 797 770 -
trunk/Source/WebCore/loader/EmptyClients.h
r146935 r147857 44 44 #include "ResourceError.h" 45 45 46 #if USE(V8)47 #include <v8.h>48 #endif49 50 46 /* 51 47 This file holds empty Client stubs for use by WebCore. … … 368 364 virtual void registerForIconNotification(bool) { } 369 365 370 #if USE(V8)371 virtual void didCreateScriptContext(v8::Handle<v8::Context>, int extensionGroup, int worldId) { }372 virtual void willReleaseScriptContext(v8::Handle<v8::Context>, int worldId) { }373 virtual bool allowScriptExtension(const String& extensionName, int extensionGroup, int worldId) { return false; }374 #endif375 376 366 #if PLATFORM(MAC) 377 367 virtual RemoteAXObjectRef accessibilityRemoteObject() { return 0; } -
trunk/Source/WebCore/loader/FrameLoaderClient.h
r147730 r147857 54 54 #endif 55 55 56 #if USE(V8)57 namespace v8 {58 class Context;59 template<class T> class Handle;60 }61 #endif62 63 56 namespace WebCore { 64 57 … … 289 282 virtual void didExhaustMemoryAvailableForScript() { }; 290 283 291 #if USE(V8)292 virtual void didCreateScriptContext(v8::Handle<v8::Context>, int extensionGroup, int worldId) = 0;293 virtual void willReleaseScriptContext(v8::Handle<v8::Context>, int worldId) = 0;294 virtual bool allowScriptExtension(const String& extensionName, int extensionGroup, int worldId) = 0;295 #endif296 297 284 virtual void registerForIconNotification(bool listen = true) = 0; 298 285 -
trunk/Source/WebCore/page/Console.idl
r143186 r147857 40 40 [CallWith=ScriptArguments|ScriptState] void dirxml(); 41 41 [CallWith=ScriptArguments|ScriptState] void table(); 42 [ V8Custom,CallWith=ScriptArguments|ScriptState] void trace();43 [ V8Custom,CallWith=ScriptArguments|ScriptState, ImplementedAs=assertCondition] void assert(in boolean condition);42 [CallWith=ScriptArguments|ScriptState] void trace(); 43 [CallWith=ScriptArguments|ScriptState, ImplementedAs=assertCondition] void assert(in boolean condition); 44 44 [CallWith=ScriptArguments|ScriptState] void count(); 45 45 [CallWith=ScriptArguments] void markTimeline(); -
trunk/Source/WebCore/page/DOMWindow.idl
r146785 r147857 39 39 ReplaceableConstructor, 40 40 JSLegacyParent=JSDOMWindowBase, 41 V8CustomToJSObject,42 V8NoWrapperCache,43 V8CustomIndexedGetter,44 41 InterfaceName=Window 45 42 ] interface DOMWindow { … … 57 54 readonly attribute Crypto crypto; 58 55 #if !defined(LANGUAGE_CPP) || !LANGUAGE_CPP 59 attribute [DoNotCheckSecurity, CustomSetter , V8Unforgeable] Location location;60 #endif 61 [Replaceable, CustomGetter , V8CustomSetter] readonly attribute Event event;56 attribute [DoNotCheckSecurity, CustomSetter] Location location; 57 #endif 58 [Replaceable, CustomGetter] readonly attribute Event event; 62 59 63 60 DOMSelection getSelection(); … … 131 128 // Self referential attributes 132 129 [Replaceable, DoNotCheckSecurityOnGetter] readonly attribute DOMWindow self; 133 [DoNotCheckSecurity , V8Unforgeable] readonly attribute DOMWindow window;130 [DoNotCheckSecurity] readonly attribute DOMWindow window; 134 131 [Replaceable, DoNotCheckSecurityOnGetter] readonly attribute DOMWindow frames; 135 132 136 [Replaceable, DoNotCheckSecurityOnGetter , V8CustomSetter] readonly attribute DOMWindow opener;133 [Replaceable, DoNotCheckSecurityOnGetter] readonly attribute DOMWindow opener; 137 134 [Replaceable, DoNotCheckSecurityOnGetter] readonly attribute DOMWindow parent; 138 [DoNotCheckSecurityOnGetter , V8Unforgeable] readonly attribute DOMWindow top;135 [DoNotCheckSecurityOnGetter] readonly attribute DOMWindow top; 139 136 140 137 // DOM Level 2 AbstractView Interface … … 148 145 149 146 // DOM Level 2 Style Interface 150 [V8PerWorldBindings]CSSStyleDeclaration getComputedStyle(in [Optional=DefaultIsUndefined] Element element,147 CSSStyleDeclaration getComputedStyle(in [Optional=DefaultIsUndefined] Element element, 151 148 in [TreatNullAs=NullString, TreatUndefinedAs=NullString,Optional=DefaultIsUndefined] DOMString pseudoElement); 152 149 … … 164 161 in [Optional=DefaultIsUndefined] WebKitPoint p); 165 162 166 readonly attribute [V8EnabledAtRuntime]DOMApplicationCache applicationCache;167 168 readonly attribute [V8EnabledAtRuntime]Storage sessionStorage163 readonly attribute DOMApplicationCache applicationCache; 164 165 readonly attribute Storage sessionStorage 169 166 getter raises(DOMException); 170 readonly attribute [V8EnabledAtRuntime]Storage localStorage167 readonly attribute Storage localStorage 171 168 getter raises(DOMException); 172 169 … … 201 198 202 199 #if defined(ENABLE_REQUEST_ANIMATION_FRAME) && ENABLE_REQUEST_ANIMATION_FRAME 203 [V8MeasureAs=UnprefixedRequestAnimationFrame]long requestAnimationFrame(in [Callback] RequestAnimationFrameCallback callback);200 long requestAnimationFrame(in [Callback] RequestAnimationFrameCallback callback); 204 201 void cancelAnimationFrame(in long id); 205 [V8MeasureAs=PrefixedRequestAnimationFrame]long webkitRequestAnimationFrame(in [Callback] RequestAnimationFrameCallback callback);202 long webkitRequestAnimationFrame(in [Callback] RequestAnimationFrameCallback callback); 206 203 [ImplementedAs=cancelAnimationFrame] void webkitCancelAnimationFrame(in long id); 207 204 [ImplementedAs=cancelAnimationFrame] void webkitCancelRequestAnimationFrame(in long id); // This is a deprecated alias for webkitCancelAnimationFrame(). Remove this when removing vendor prefix. … … 298 295 attribute EventListener onorientationchange; 299 296 #endif 300 attribute [Conditional=TOUCH_EVENTS ,V8EnabledAtRuntime=touch] EventListener ontouchstart;301 attribute [Conditional=TOUCH_EVENTS ,V8EnabledAtRuntime=touch] EventListener ontouchmove;302 attribute [Conditional=TOUCH_EVENTS ,V8EnabledAtRuntime=touch] EventListener ontouchend;303 attribute [Conditional=TOUCH_EVENTS ,V8EnabledAtRuntime=touch] EventListener ontouchcancel;304 305 attribute [Conditional=DEVICE_ORIENTATION ,V8EnabledAtRuntime] EventListener ondevicemotion;306 attribute [Conditional=DEVICE_ORIENTATION ,V8EnabledAtRuntime] EventListener ondeviceorientation;297 attribute [Conditional=TOUCH_EVENTS] EventListener ontouchstart; 298 attribute [Conditional=TOUCH_EVENTS] EventListener ontouchmove; 299 attribute [Conditional=TOUCH_EVENTS] EventListener ontouchend; 300 attribute [Conditional=TOUCH_EVENTS] EventListener ontouchcancel; 301 302 attribute [Conditional=DEVICE_ORIENTATION] EventListener ondevicemotion; 303 attribute [Conditional=DEVICE_ORIENTATION] EventListener ondeviceorientation; 307 304 308 305 attribute [Conditional=PROXIMITY_EVENTS] EventListener onwebkitdeviceproximity; … … 318 315 raises(EventException); 319 316 320 [V8Custom]void captureEvents(/*in long eventFlags*/);321 [V8Custom]void releaseEvents(/*in long eventFlags*/);317 void captureEvents(/*in long eventFlags*/); 318 void releaseEvents(/*in long eventFlags*/); 322 319 323 320 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT … … 394 391 attribute EntityConstructor Entity; 395 392 attribute EntityReferenceConstructor EntityReference; 396 [Conditional=CANVAS_PATH , V8EnabledAtRuntime=canvasPath] attribute DOMPathConstructor Path;393 [Conditional=CANVAS_PATH] attribute DOMPathConstructor Path; 397 394 attribute ProcessingInstructionConstructor ProcessingInstruction; 398 [Conditional=SHADOW_DOM , V8EnabledAtRuntime=shadowDOM] attribute ShadowRootConstructor WebKitShadowRoot;399 [Conditional=SHADOW_DOM , V8EnabledAtRuntime=shadowDOM] attribute HTMLContentElementConstructor HTMLContentElement;400 [Conditional=SHADOW_DOM , V8EnabledAtRuntime=shadowDOM] attribute HTMLShadowElementConstructor HTMLShadowElement;395 [Conditional=SHADOW_DOM] attribute ShadowRootConstructor WebKitShadowRoot; 396 [Conditional=SHADOW_DOM] attribute HTMLContentElementConstructor HTMLContentElement; 397 [Conditional=SHADOW_DOM] attribute HTMLShadowElementConstructor HTMLShadowElement; 401 398 402 399 attribute DOMSelectionConstructor Selection; … … 416 413 attribute HTMLDListElementConstructor HTMLDListElement; 417 414 [Conditional=DATALIST_ELEMENT] attribute HTMLDataListElementConstructor HTMLDataListElement; 418 [Conditional=DIALOG_ELEMENT , V8EnabledPerContext=dialogElement] attribute HTMLDialogElementConstructor HTMLDialogElement;415 [Conditional=DIALOG_ELEMENT] attribute HTMLDialogElementConstructor HTMLDialogElement; 419 416 attribute HTMLDirectoryElementConstructor HTMLDirectoryElement; 420 417 attribute HTMLDivElementConstructor HTMLDivElement; … … 482 479 [JSCustomGetter] attribute HTMLOptionElementConstructorConstructor Option; // Usable with new operator 483 480 484 [Conditional=ENCRYPTED_MEDIA , V8EnabledAtRuntime=encryptedMedia] attribute MediaKeyEventConstructor MediaKeyEvent;485 attribute [Conditional=ENCRYPTED_MEDIA_V2 , V8EnabledAtRuntime=encryptedMedia] MediaKeysConstructor MediaKeys;486 attribute [Conditional=ENCRYPTED_MEDIA_V2|ENCRYPTED_MEDIA , V8EnabledAtRuntime=encryptedMedia] MediaKeyErrorConstructor MediaKeyError;487 attribute [Conditional=ENCRYPTED_MEDIA_V2 , V8EnabledAtRuntime=encryptedMedia] MediaKeyMessageEventConstructor MediaKeyMessageEvent;488 attribute [Conditional=ENCRYPTED_MEDIA_V2 , V8EnabledAtRuntime=encryptedMedia] MediaKeyNeededEventConstructor MediaKeyNeededEvent;489 490 [Conditional=VIDEO_TRACK , V8EnabledAtRuntime=webkitVideoTrack] attribute HTMLTrackElementConstructor HTMLTrackElement;491 [Conditional=VIDEO_TRACK , V8EnabledAtRuntime=webkitVideoTrack] attribute TextTrackConstructor TextTrack;492 [Conditional=VIDEO_TRACK , V8EnabledAtRuntime=webkitVideoTrack] attribute TextTrackCueConstructor TextTrackCue; // Usable with the new operator493 [Conditional=VIDEO_TRACK , V8EnabledAtRuntime=webkitVideoTrack] attribute TextTrackCueListConstructor TextTrackCueList;494 [Conditional=VIDEO_TRACK , V8EnabledAtRuntime=webkitVideoTrack] attribute TextTrackListConstructor TextTrackList;495 [Conditional=VIDEO_TRACK & WEBVTT_REGIONS , V8EnabledAtRuntime=webkitVideoTrack] attribute TextTrackRegionConstructor TextTrackRegion; // Usable with the new operator496 [Conditional=VIDEO_TRACK , V8EnabledAtRuntime=webkitVideoTrack] attribute TrackEventConstructor TrackEvent;497 498 [JSCustomGetter, Conditional=VIDEO , V8EnabledAtRuntime] attribute HTMLAudioElementConstructorConstructor Audio; // Usable with the new operator499 [Conditional=VIDEO , V8EnabledAtRuntime] attribute HTMLAudioElementConstructor HTMLAudioElement;500 [Conditional=VIDEO , V8EnabledAtRuntime] attribute HTMLMediaElementConstructor HTMLMediaElement;501 [Conditional=VIDEO , V8EnabledAtRuntime] attribute HTMLVideoElementConstructor HTMLVideoElement;502 [Conditional=VIDEO , V8EnabledAtRuntime] attribute MediaErrorConstructor MediaError;503 [Conditional=VIDEO , V8EnabledAtRuntime] attribute TimeRangesConstructor TimeRanges;504 [Conditional=VIDEO , V8EnabledAtRuntime] attribute HTMLSourceElementConstructor HTMLSourceElement;505 [Conditional=VIDEO , V8EnabledAtRuntime] attribute MediaControllerConstructor MediaController;481 [Conditional=ENCRYPTED_MEDIA] attribute MediaKeyEventConstructor MediaKeyEvent; 482 attribute [Conditional=ENCRYPTED_MEDIA_V2] MediaKeysConstructor MediaKeys; 483 attribute [Conditional=ENCRYPTED_MEDIA_V2|ENCRYPTED_MEDIA] MediaKeyErrorConstructor MediaKeyError; 484 attribute [Conditional=ENCRYPTED_MEDIA_V2] MediaKeyMessageEventConstructor MediaKeyMessageEvent; 485 attribute [Conditional=ENCRYPTED_MEDIA_V2] MediaKeyNeededEventConstructor MediaKeyNeededEvent; 486 487 [Conditional=VIDEO_TRACK] attribute HTMLTrackElementConstructor HTMLTrackElement; 488 [Conditional=VIDEO_TRACK] attribute TextTrackConstructor TextTrack; 489 [Conditional=VIDEO_TRACK] attribute TextTrackCueConstructor TextTrackCue; // Usable with the new operator 490 [Conditional=VIDEO_TRACK] attribute TextTrackCueListConstructor TextTrackCueList; 491 [Conditional=VIDEO_TRACK] attribute TextTrackListConstructor TextTrackList; 492 [Conditional=VIDEO_TRACK & WEBVTT_REGIONS] attribute TextTrackRegionConstructor TextTrackRegion; // Usable with the new operator 493 [Conditional=VIDEO_TRACK] attribute TrackEventConstructor TrackEvent; 494 495 [JSCustomGetter, Conditional=VIDEO] attribute HTMLAudioElementConstructorConstructor Audio; // Usable with the new operator 496 [Conditional=VIDEO] attribute HTMLAudioElementConstructor HTMLAudioElement; 497 [Conditional=VIDEO] attribute HTMLMediaElementConstructor HTMLMediaElement; 498 [Conditional=VIDEO] attribute HTMLVideoElementConstructor HTMLVideoElement; 499 [Conditional=VIDEO] attribute MediaErrorConstructor MediaError; 500 [Conditional=VIDEO] attribute TimeRangesConstructor TimeRanges; 501 [Conditional=VIDEO] attribute HTMLSourceElementConstructor HTMLSourceElement; 502 [Conditional=VIDEO] attribute MediaControllerConstructor MediaController; 506 503 507 504 attribute CanvasPatternConstructor CanvasPattern; … … 561 558 attribute WheelEventConstructor WheelEvent; 562 559 attribute XMLHttpRequestProgressEventConstructor XMLHttpRequestProgressEvent; 563 [Conditional=DEVICE_ORIENTATION , V8EnabledAtRuntime] attribute DeviceMotionEventConstructor DeviceMotionEvent;564 [Conditional=DEVICE_ORIENTATION , V8EnabledAtRuntime] attribute DeviceOrientationEventConstructor DeviceOrientationEvent;565 [Conditional=TOUCH_EVENTS , V8EnabledAtRuntime=touch] attribute TouchConstructor Touch;566 [Conditional=TOUCH_EVENTS , V8EnabledAtRuntime=touch] attribute TouchEventConstructor TouchEvent;567 [Conditional=TOUCH_EVENTS , V8EnabledAtRuntime=touch] attribute TouchListConstructor TouchList;560 [Conditional=DEVICE_ORIENTATION] attribute DeviceMotionEventConstructor DeviceMotionEvent; 561 [Conditional=DEVICE_ORIENTATION] attribute DeviceOrientationEventConstructor DeviceOrientationEvent; 562 [Conditional=TOUCH_EVENTS] attribute TouchConstructor Touch; 563 [Conditional=TOUCH_EVENTS] attribute TouchEventConstructor TouchEvent; 564 [Conditional=TOUCH_EVENTS] attribute TouchListConstructor TouchList; 568 565 attribute StorageEventConstructor StorageEvent; 569 566 [Conditional=INPUT_SPEECH] attribute SpeechInputEventConstructor SpeechInputEvent; … … 571 568 [Conditional=PROXIMITY_EVENTS] attribute DeviceProximityEventConstructor DeviceProximityEvent; 572 569 [Conditional=REQUEST_AUTOCOMPLETE] attribute AutocompleteErrorEventConstructor AutocompleteErrorEvent; 573 [Conditional=CSP_NEXT , V8EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] attribute SecurityPolicyViolationEventConstructor SecurityPolicyViolationEvent;570 [Conditional=CSP_NEXT] attribute SecurityPolicyViolationEventConstructor SecurityPolicyViolationEvent; 574 571 575 572 attribute EventExceptionConstructor EventException; … … 577 574 attribute WebKitCSSKeyframeRuleConstructor WebKitCSSKeyframeRule; 578 575 attribute WebKitCSSKeyframesRuleConstructor WebKitCSSKeyframesRule; 579 [Conditional=CSS_REGIONS , V8EnabledAtRuntime=cssRegions] attribute WebKitCSSRegionRuleConstructor WebKitCSSRegionRule;576 [Conditional=CSS_REGIONS] attribute WebKitCSSRegionRuleConstructor WebKitCSSRegionRule; 580 577 581 578 attribute WebKitCSSMatrixConstructor WebKitCSSMatrix; // Usable with the new operator … … 586 583 587 584 [Conditional=WORKERS] attribute WorkerConstructor Worker; // Usable with the new operator 588 [Conditional=SHARED_WORKERS, JSCustomGetter , V8EnabledAtRuntime] attribute SharedWorkerConstructor SharedWorker; // Usable with the new operator585 [Conditional=SHARED_WORKERS, JSCustomGetter] attribute SharedWorkerConstructor SharedWorker; // Usable with the new operator 589 586 590 587 attribute FileConstructor File; … … 798 795 attribute MutationObserverConstructor MutationObserver; 799 796 800 [Conditional=MEDIA_SOURCE , V8EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaSource;801 [Conditional=MEDIA_SOURCE , V8EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourceBuffer;802 [Conditional=MEDIA_SOURCE , V8EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitSourceBufferList;797 [Conditional=MEDIA_SOURCE] attribute MediaSourceConstructor WebKitMediaSource; 798 [Conditional=MEDIA_SOURCE] attribute SourceBufferConstructor WebKitSourceBuffer; 799 [Conditional=MEDIA_SOURCE] attribute SourceBufferListConstructor WebKitSourceBufferList; 803 800 804 801 #endif // defined(LANGUAGE_JAVASCRIPT) 805 806 #if defined(V8_BINDING) && V8_BINDING807 // window.toString() requires special handling in V8808 [V8DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString toString();809 #endif // defined(V8_BINDING)810 802 }; 811 -
trunk/Source/WebCore/page/DOMWindowPagePopup.idl
r131172 r147857 33 33 Supplemental=DOMWindow 34 34 ] interface DOMWindowPagePopup { 35 [V8EnabledPerContext=pagePopup]readonly attribute PagePopupController pagePopupController;35 readonly attribute PagePopupController pagePopupController; 36 36 }; -
trunk/Source/WebCore/page/History.idl
r132421 r147857 25 25 26 26 [ 27 #if defined(V8_BINDING) && V8_BINDING28 CheckSecurity,29 #endif30 27 JSCustomGetOwnPropertySlotAndDescriptor, 31 28 CustomNamedSetter, … … 42 39 [DoNotCheckSecurity, CallWith=ScriptExecutionContext] void go(in [Optional=DefaultIsUndefined] long distance); 43 40 44 [Custom , V8EnabledPerContext=pushState] void pushState(in any data, in DOMString title, in [Optional] DOMString url)41 [Custom] void pushState(in any data, in DOMString title, in [Optional] DOMString url) 45 42 raises(DOMException); 46 [Custom , V8EnabledPerContext=pushState] void replaceState(in any data, in DOMString title, in [Optional] DOMString url)43 [Custom] void replaceState(in any data, in DOMString title, in [Optional] DOMString url) 47 44 raises(DOMException); 48 45 }; -
trunk/Source/WebCore/page/Location.idl
r142935 r147857 28 28 29 29 [ 30 #if defined(V8_BINDING) && V8_BINDING31 CheckSecurity,32 #endif33 30 JSCustomGetOwnPropertySlotAndDescriptor, 34 31 CustomNamedSetter, … … 42 39 ] interface Location { 43 40 #if !defined(LANGUAGE_CPP) || !LANGUAGE_CPP 44 [DoNotCheckSecurityOnSetter, CustomSetter , V8Unforgeable] attribute DOMString href;41 [DoNotCheckSecurityOnSetter, CustomSetter] attribute DOMString href; 45 42 #endif 46 43 47 [Custom , V8Unforgeable] void assign(in [Optional=DefaultIsUndefined] DOMString url);48 [Custom , V8Unforgeable] void replace(in [Optional=DefaultIsUndefined] DOMString url);49 [Custom , V8Unforgeable] void reload();44 [Custom] void assign(in [Optional=DefaultIsUndefined] DOMString url); 45 [Custom] void replace(in [Optional=DefaultIsUndefined] DOMString url); 46 [Custom] void reload(); 50 47 51 48 // URI decomposition attributes … … 65 62 66 63 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT 67 [NotEnumerable, Custom, V8Unforgeable, V8ReadOnly, ImplementedAs=toStringFunction] DOMString toString(); 68 #endif 69 #if defined(V8_BINDING) && V8_BINDING 70 [NotEnumerable, Custom, V8Unforgeable, V8ReadOnly] any valueOf(); 64 [NotEnumerable, Custom, ImplementedAs=toStringFunction] DOMString toString(); 71 65 #endif 72 66 }; -
trunk/Source/WebCore/platform/graphics/skia/PatternSkia.cpp
r147622 r147857 39 39 #include "SkShader.h" 40 40 41 #if USE(V8)42 #include <v8.h>43 #endif44 45 41 using namespace std; 46 42 … … 51 47 SkSafeUnref(m_pattern); 52 48 m_pattern = 0; 53 if (m_externalMemoryAllocated) { 54 #if USE(V8) 55 v8::V8::AdjustAmountOfExternalAllocatedMemory(-m_externalMemoryAllocated); 56 #endif 49 if (m_externalMemoryAllocated) 57 50 m_externalMemoryAllocated = 0; 58 }59 51 } 60 52 … … 106 98 // Clamp to int, since that's what the adjust function takes. 107 99 m_externalMemoryAllocated = static_cast<int>(min(static_cast<size_t>(INT_MAX), bm2.getSafeSize())); 108 #if USE(V8)109 v8::V8::AdjustAmountOfExternalAllocatedMemory(m_externalMemoryAllocated);110 #endif111 100 } 112 101 m_pattern->setLocalMatrix(m_patternSpaceTransformation); -
trunk/Source/WebCore/testing/Internals.cpp
r147792 r147857 2043 2043 PassRefPtr<ArrayBuffer> Internals::serializeObject(PassRefPtr<SerializedScriptValue> value) const 2044 2044 { 2045 #if USE(V8)2046 String stringValue = value->toWireString();2047 return ArrayBuffer::create(static_cast<const void*>(stringValue.impl()->characters()), stringValue.sizeInBytes());2048 #else2049 2045 Vector<uint8_t> bytes = value->data(); 2050 2046 return ArrayBuffer::create(bytes.data(), bytes.size()); 2051 #endif2052 2047 } 2053 2048 2054 2049 PassRefPtr<SerializedScriptValue> Internals::deserializeBuffer(PassRefPtr<ArrayBuffer> buffer) const 2055 2050 { 2056 #if USE(V8)2057 String value(static_cast<const UChar*>(buffer->data()), buffer->byteLength() / sizeof(UChar));2058 return SerializedScriptValue::createFromWire(value);2059 #else2060 2051 Vector<uint8_t> bytes; 2061 2052 bytes.append(static_cast<const uint8_t*>(buffer->data()), buffer->byteLength()); 2062 2053 return SerializedScriptValue::adopt(bytes); 2063 #endif2064 2054 } 2065 2055
Note:
See TracChangeset
for help on using the changeset viewer.