Changeset 48863 in webkit


Ignore:
Timestamp:
Sep 29, 2009 1:57:01 AM (15 years ago)
Author:
ukai@chromium.org
Message:

2009-09-29 Fumitoshi Ukai <ukai@chromium.org>

Unreviewed. Fix 4 layout test failures by webkit r48861.
http://bugs.webkit.org/show_bug.cgi?id=29840

r48861 introduced experimentalWebSocketsEnabled, and false by default.
When experimentalWebSocketsEnabled is false, window.WebSocket is
undefined, instead of a constructor.

  • fast/dom/Window/window-properties-expected.txt:
  • fast/dom/prototype-inheritance-2-expected.txt:
  • fast/dom/prototype-inheritance-expected.txt:
  • fast/js/global-constructors-expected.txt:
Location:
trunk/LayoutTests
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r48851 r48863  
     12009-09-29  Fumitoshi Ukai  <ukai@chromium.org>
     2
     3        Unreviewed.  Fix 4 layout test failures by webkit r48861.
     4        http://bugs.webkit.org/show_bug.cgi?id=29840
     5
     6        r48861 introduced experimentalWebSocketsEnabled, and false by default.
     7        When experimentalWebSocketsEnabled is false, window.WebSocket is
     8        undefined, instead of a constructor.
     9
     10        * fast/dom/Window/window-properties-expected.txt:
     11        * fast/dom/prototype-inheritance-2-expected.txt:
     12        * fast/dom/prototype-inheritance-expected.txt:
     13        * fast/js/global-constructors-expected.txt:
     14
    1152009-09-28  Zan Dobersek  <zandobersek@gmail.com>
    216
  • trunk/LayoutTests/fast/dom/Window/window-properties-expected.txt

    r48806 r48863  
    15211521window.WebKitTransitionEvent [object WebKitTransitionEventConstructor]
    15221522window.WebKitTransitionEvent.prototype [printed above as window.Event.prototype]
    1523 window.WebSocket [object WebSocketConstructor]
    1524 window.WebSocket.prototype [object WebSocketPrototype]
    1525 window.WebSocket.prototype.CLOSED [number]
    1526 window.WebSocket.prototype.CONNECTING [number]
    1527 window.WebSocket.prototype.OPEN [number]
    1528 window.WebSocket.prototype.close [function]
    1529 window.WebSocket.prototype.send [function]
     1523window.WebSocket [undefined]
    15301524window.WheelEvent [object WheelEventConstructor]
    15311525window.WheelEvent.prototype [printed above as window.Event.prototype]
  • trunk/LayoutTests/fast/dom/prototype-inheritance-2-expected.txt

    r48566 r48863  
    292292Never found WebKitCSSTransformValue
    293293Never found WebKitPoint
    294 Never found WebSocket
    295294Never found Worker
    296295Never found XMLHttpRequest
  • trunk/LayoutTests/fast/dom/prototype-inheritance-expected.txt

    r48270 r48863  
    338338PASS inner.WebKitTransitionEvent.isInner is true
    339339PASS inner.WebKitTransitionEvent.constructor.isInner is true
    340 PASS inner.WebSocket.isInner is true
    341 PASS inner.WebSocket.constructor.isInner is true
    342340PASS inner.WheelEvent.isInner is true
    343341PASS inner.WheelEvent.constructor.isInner is true
  • trunk/LayoutTests/fast/js/global-constructors-expected.txt

    r48270 r48863  
    164164PASS WebKitPoint.toString() is '[object WebKitPointConstructor]'
    165165PASS WebKitTransitionEvent.toString() is '[object WebKitTransitionEventConstructor]'
    166 PASS WebSocket.toString() is '[object WebSocketConstructor]'
    167166PASS WheelEvent.toString() is '[object WheelEventConstructor]'
    168167PASS Worker.toString() is '[object WorkerConstructor]'
Note: See TracChangeset for help on using the changeset viewer.