Changeset 101025 in webkit


Ignore:
Timestamp:
Nov 22, 2011 1:41:13 PM (12 years ago)
Author:
scheib@chromium.org
Message:

Pointer Lock: Initial Tests for navigator.webkitPonter
https://bugs.webkit.org/show_bug.cgi?id=72659

Reviewed by Darin Fisher.

Tools:

  • DumpRenderTree/chromium/TestShell.cpp:

(TestShell::TestShell):

Enabling PointerLock in TestShell

LayoutTests:

  • platform/efl/Skipped:
  • platform/gtk/Skipped:
  • platform/mac/Skipped:
  • platform/qt/Skipped:
  • platform/win/Skipped:
  • platform/wincairo/Skipped:
  • pointer-lock/mouse-event-api-expected.txt:
  • pointer-lock/mouse-event-api.html:
  • pointer-lock/pointer-lock-api-expected.txt:
  • pointer-lock/pointer-lock-api.html:
Location:
trunk
Files:
5 added
10 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r101024 r101025  
     12011-11-17  Vincent Scheib  <scheib@chromium.org>
     2
     3        Pointer Lock: Initial Tests for navigator.webkitPonter
     4        https://bugs.webkit.org/show_bug.cgi?id=72659
     5
     6        Reviewed by Darin Fisher.
     7
     8        * platform/efl/Skipped:
     9        * platform/gtk/Skipped:
     10        * platform/mac/Skipped:
     11        * platform/qt/Skipped:
     12        * platform/win/Skipped:
     13        * platform/wincairo/Skipped:
     14        * pointer-lock/mouse-event-api-expected.txt:
     15        * pointer-lock/mouse-event-api.html:
     16        * pointer-lock/pointer-lock-api-expected.txt:
     17        * pointer-lock/pointer-lock-api.html:
     18
    1192011-11-22  Adam Klein  <adamk@chromium.org>
    220
  • trunk/LayoutTests/platform/chromium/fast/dom/navigator-detached-no-crash-expected.txt

    r100833 r101025  
    1919navigator.vendorSub is OK
    2020navigator.webkitGamepads is OK
     21navigator.webkitPointer is OK
    2122navigator.appCodeName is OK
    2223navigator.appName is OK
     
    3738navigator.vendorSub is OK
    3839navigator.webkitGamepads is OK
     40navigator.webkitPointer is OK
    3941
  • trunk/LayoutTests/platform/efl/Skipped

    r100915 r101025  
    19221922fast/dom/MicroData
    19231923
     1924# Pointer Lock is not implemented.
     1925pointer-lock/
     1926
    19241927# Tests for MediaSource API. Feature is not yet functional.
    19251928# https://bugs.webkit.org/show_bug.cgi?id=64731
  • trunk/LayoutTests/platform/gtk/Skipped

    r100979 r101025  
    15921592editing/spelling/spelling-unified-emulation.html
    15931593
     1594# Pointer Lock is not implemented.
     1595pointer-lock/
     1596
    15941597# fast/dom/Window/window-postmessage-arrays.html fails on JSC platforms
    15951598# https://bugs.webkit.org/show_bug.cgi?id=72363
  • trunk/LayoutTests/platform/mac/Skipped

    r100833 r101025  
    488488fast/text/international/locale-sensitive-fonts.html
    489489
     490# Pointer Lock is not implemented.
     491pointer-lock/
     492
    490493# https://bugs.webkit.org/show_bug.cgi?id=72435
    491494fast/dom/Window/window-postmessage-arrays.html
  • trunk/LayoutTests/platform/qt/Skipped

    r100980 r101025  
    24712471http/tests/misc/onload-remove-iframe-crash-2.html
    24722472
     2473# Pointer Lock is not implemented.
     2474pointer-lock/
     2475
    24732476# [Qt] inspector/elements/elements-panel-selection-on-refresh.html crashing
    24742477# https://bugs.webkit.org/show_bug.cgi?id=72504
  • trunk/LayoutTests/platform/win/Skipped

    r100833 r101025  
    14551455fast/text/international/locale-sensitive-fonts.html
    14561456
     1457# Pointer Lock is not implemented.
     1458pointer-lock/
     1459
    14571460# https://bugs.webkit.org/show_bug.cgi?id=72435
    14581461fast/dom/Window/window-postmessage-arrays.html
  • trunk/LayoutTests/platform/wincairo/Skipped

    r100833 r101025  
    19681968fast/events/platform-wheelevent-paging-y-in-scrolling-page.html
    19691969
     1970# Pointer Lock is not implemented.
     1971pointer-lock/
     1972
    19701973# DRT doesn't support overridePreference("WebKit*FontMap"...)
    19711974fast/text/international/locale-sensitive-fonts.html
  • trunk/Tools/ChangeLog

    r101019 r101025  
     12011-11-17  Vincent Scheib  <scheib@chromium.org>
     2
     3        Pointer Lock: Initial Tests for navigator.webkitPonter
     4        https://bugs.webkit.org/show_bug.cgi?id=72659
     5
     6        Reviewed by Darin Fisher.
     7
     8        * DumpRenderTree/chromium/TestShell.cpp:
     9        (TestShell::TestShell):
     10            Enabling PointerLock in TestShell
     11
    1122011-11-22  Ryan Sleevi  <rsleevi@chromium.org>
    213
  • trunk/Tools/DumpRenderTree/chromium/TestShell.cpp

    r100833 r101025  
    117117    WebRuntimeFeatures::enableDataTransferItems(true);
    118118    WebRuntimeFeatures::enableGeolocation(true);
     119    WebRuntimeFeatures::enablePointerLock(true);
    119120    WebRuntimeFeatures::enableIndexedDatabase(true);
    120121    WebRuntimeFeatures::enableFileSystem(true);
Note: See TracChangeset for help on using the changeset viewer.