Commit 714a4726 authored by weinig@apple.com's avatar weinig@apple.com

WebCore:

2009-04-13  Sam Weinig  <sam@webkit.org>

        Reviewed by Tim Hatcher.

        Put the MessagePort constructor back in ENABLE_CHANNEL_MESSAGING.

        * page/DOMWindow.idl:

LayoutTests:

2009-04-13  Sam Weinig  <sam@webkit.org>

        Reviewed by Tim Hatcher.

        Update test results after putting the MessagePort constructor
        back in ENABLE_CHANNEL_MESSAGING.

        * fast/dom/Window/window-properties-expected.txt:
        * fast/js/global-constructors-expected.txt:
        * platform/mac-leopard/fast/dom/Window/window-properties-expected.txt:



git-svn-id: svn://svn.chromium.org/blink/trunk@42441 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 6b8ad995
2009-04-13 Sam Weinig <sam@webkit.org>
Reviewed by Tim Hatcher.
Update test results after putting the MessagePort constructor
back in ENABLE_CHANNEL_MESSAGING.
* fast/dom/Window/window-properties-expected.txt:
* fast/js/global-constructors-expected.txt:
* platform/mac-leopard/fast/dom/Window/window-properties-expected.txt:
2009-04-13 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk> 2009-04-13 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
Rubber-stamped by Holger Freyther. Rubber-stamped by Holger Freyther.
......
...@@ -1024,15 +1024,6 @@ window.MediaList.prototype.deleteMedium [function] ...@@ -1024,15 +1024,6 @@ window.MediaList.prototype.deleteMedium [function]
window.MediaList.prototype.item [function] window.MediaList.prototype.item [function]
window.MessageEvent [object MessageEventConstructor] window.MessageEvent [object MessageEventConstructor]
window.MessageEvent.prototype [printed above as window.Event.prototype] window.MessageEvent.prototype [printed above as window.Event.prototype]
window.MessagePort [object MessagePortConstructor]
window.MessagePort.prototype [object MessagePortPrototype]
window.MessagePort.prototype.addEventListener [function]
window.MessagePort.prototype.close [function]
window.MessagePort.prototype.dispatchEvent [function]
window.MessagePort.prototype.postMessage [function]
window.MessagePort.prototype.removeEventListener [function]
window.MessagePort.prototype.start [function]
window.MessagePort.prototype.startConversation [function]
window.MimeType [object MimeTypeConstructor] window.MimeType [object MimeTypeConstructor]
window.MimeType.prototype [object MimeTypePrototype] window.MimeType.prototype [object MimeTypePrototype]
window.MimeTypeArray [object MimeTypeArrayConstructor] window.MimeTypeArray [object MimeTypeArrayConstructor]
......
...@@ -109,7 +109,6 @@ PASS KeyboardEvent.toString() is '[object KeyboardEventConstructor]' ...@@ -109,7 +109,6 @@ PASS KeyboardEvent.toString() is '[object KeyboardEventConstructor]'
PASS MediaError.toString() is '[object MediaErrorConstructor]' PASS MediaError.toString() is '[object MediaErrorConstructor]'
PASS MediaList.toString() is '[object MediaListConstructor]' PASS MediaList.toString() is '[object MediaListConstructor]'
PASS MessageEvent.toString() is '[object MessageEventConstructor]' PASS MessageEvent.toString() is '[object MessageEventConstructor]'
PASS MessagePort.toString() is '[object MessagePortConstructor]'
PASS MimeType.toString() is '[object MimeTypeConstructor]' PASS MimeType.toString() is '[object MimeTypeConstructor]'
PASS MimeTypeArray.toString() is '[object MimeTypeArrayConstructor]' PASS MimeTypeArray.toString() is '[object MimeTypeArrayConstructor]'
PASS MouseEvent.toString() is '[object MouseEventConstructor]' PASS MouseEvent.toString() is '[object MouseEventConstructor]'
......
...@@ -1024,15 +1024,6 @@ window.MediaList.prototype.deleteMedium [function] ...@@ -1024,15 +1024,6 @@ window.MediaList.prototype.deleteMedium [function]
window.MediaList.prototype.item [function] window.MediaList.prototype.item [function]
window.MessageEvent [object MessageEventConstructor] window.MessageEvent [object MessageEventConstructor]
window.MessageEvent.prototype [printed above as window.Event.prototype] window.MessageEvent.prototype [printed above as window.Event.prototype]
window.MessagePort [object MessagePortConstructor]
window.MessagePort.prototype [object MessagePortPrototype]
window.MessagePort.prototype.addEventListener [function]
window.MessagePort.prototype.close [function]
window.MessagePort.prototype.dispatchEvent [function]
window.MessagePort.prototype.postMessage [function]
window.MessagePort.prototype.removeEventListener [function]
window.MessagePort.prototype.start [function]
window.MessagePort.prototype.startConversation [function]
window.MimeType [object MimeTypeConstructor] window.MimeType [object MimeTypeConstructor]
window.MimeType.prototype [object MimeTypePrototype] window.MimeType.prototype [object MimeTypePrototype]
window.MimeTypeArray [object MimeTypeArrayConstructor] window.MimeTypeArray [object MimeTypeArrayConstructor]
......
2009-04-13 Sam Weinig <sam@webkit.org>
Reviewed by Tim Hatcher.
Put the MessagePort constructor back in ENABLE_CHANNEL_MESSAGING.
* page/DOMWindow.idl:
2009-04-13 Greg Bolsinga <bolsinga@apple.com> 2009-04-13 Greg Bolsinga <bolsinga@apple.com>
Fix GTK build break. Fix GTK build break.
...@@ -372,12 +372,6 @@ module window { ...@@ -372,12 +372,6 @@ module window {
attribute [JSCCustomGetter] WebKitPointConstructor WebKitPoint; // Usable with new the operator attribute [JSCCustomGetter] WebKitPointConstructor WebKitPoint; // Usable with new the operator
attribute MessagePortConstructor MessagePort;
#if ENABLE_CHANNEL_MESSAGING
attribute [JSCCustomGetter] MessageChannelConstructor MessageChannel; // Usable with the new operator
#endif
attribute ClipboardConstructor Clipboard; attribute ClipboardConstructor Clipboard;
attribute FileConstructor File; attribute FileConstructor File;
...@@ -402,6 +396,11 @@ module window { ...@@ -402,6 +396,11 @@ module window {
attribute [JSCCustomGetter] XSLTProcessorConstructor XSLTProcessor; // Usable with the new operator attribute [JSCCustomGetter] XSLTProcessorConstructor XSLTProcessor; // Usable with the new operator
#endif #endif
#if ENABLE_CHANNEL_MESSAGING
attribute MessagePortConstructor MessagePort;
attribute [JSCCustomGetter] MessageChannelConstructor MessageChannel; // Usable with the new operator
#endif
#if ENABLE_WORKERS #if ENABLE_WORKERS
attribute [JSCCustomGetter] WorkerConstructor Worker; // Usable with the new operator attribute [JSCCustomGetter] WorkerConstructor Worker; // Usable with the new operator
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment