Changeset 64478 in webkit


Ignore:
Timestamp:
Aug 2, 2010 11:19:51 AM (14 years ago)
Author:
Chris Fleizach
Message:

AX: Support methods for web apps to interact with the native accessibility APIs
https://bugs.webkit.org/show_bug.cgi?id=43005

Updating expectations for layout tests.

  • fast/dom/Window/window-properties-expected.txt:
  • fast/dom/navigator-detached-no-crash-expected.txt:
  • fast/dom/prototype-inheritance-2-expected.txt:
Location:
trunk/LayoutTests
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r64474 r64478  
     12010-08-02  Chris Fleizach  <cfleizach@apple.com>
     2
     3        AX: Support methods for web apps to interact with the native accessibility APIs
     4        https://bugs.webkit.org/show_bug.cgi?id=43005
     5
     6        Updating expectations for layout tests.
     7
     8        * fast/dom/Window/window-properties-expected.txt:
     9        * fast/dom/navigator-detached-no-crash-expected.txt:
     10        * fast/dom/prototype-inheritance-2-expected.txt:
     11
    1122010-08-02  Andrew Wilson  <atwilson@chromium.org>
    213
  • trunk/LayoutTests/fast/dom/Window/window-properties-expected.txt

    r64272 r64478  
    21392139window.clearTimeout [function]
    21402140window.clientInformation [object Navigator]
     2141window.clientInformation.accessibility [object Accessibility]
     2142window.clientInformation.accessibility.elementsChanged [function]
     2143window.clientInformation.accessibility.screenChanged [function]
     2144window.clientInformation.accessibility.screenReader [object ScreenReader]
     2145window.clientInformation.accessibility.screenReader.active [boolean]
     2146window.clientInformation.accessibility.screenReader.activeElement [null]
     2147window.clientInformation.accessibility.screenReader.version [string]
    21412148window.clientInformation.appCodeName [string]
    21422149window.clientInformation.appName [string]
  • trunk/LayoutTests/fast/dom/navigator-detached-no-crash-expected.txt

    r62834 r64478  
    11This tests that the navigator object of a deleted frame is disconnected properly. Accessing fields or methods shouldn't crash the browser.
    22 Check Navigator
     3navigator.accessibility is OK
    34navigator.appCodeName is OK
    45navigator.appName is OK
     
    1718navigator.vendor is OK
    1819navigator.vendorSub is OK
     20navigator.accessibility is OK
    1921navigator.appCodeName is OK
    2022navigator.appName is OK
  • trunk/LayoutTests/fast/dom/prototype-inheritance-2-expected.txt

    r63539 r64478  
    44
    55
     6PASS Accessibility from inner.document.forms.testForm.0.ownerDocument.defaultView.clientInformation.accessibility
     7PASS AccessibilityPrototype from inner.document.forms.testForm.0.ownerDocument.defaultView.clientInformation.accessibility.__proto__
    68FAIL Array from inner.document.forms.testForm.0.ownerDocument.defaultView.console.profiles
    79PASS Attr from inner.document.forms.testForm.0.attributes.0
     
    187189PASS Screen from inner.document.forms.testForm.0.ownerDocument.defaultView.screen
    188190PASS ScreenPrototype from inner.document.forms.testForm.0.ownerDocument.defaultView.screen.__proto__
     191PASS ScreenReader from inner.document.forms.testForm.0.ownerDocument.defaultView.clientInformation.accessibility.screenReader
     192PASS ScreenReaderPrototype from inner.document.forms.testForm.0.ownerDocument.defaultView.clientInformation.accessibility.screenReader.__proto__
    189193PASS Storage from inner.document.forms.testForm.0.ownerDocument.defaultView.localStorage
    190194PASS StorageConstructor from inner.document.forms.testForm.0.ownerDocument.defaultView.localStorage.constructor
Note: See TracChangeset for help on using the changeset viewer.