Changeset 155401 in webkit


Ignore:
Timestamp:
Sep 9, 2013 4:04:51 PM (11 years ago)
Author:
mark.lam@apple.com
Message:

Fix path to post file in a fwe tests, and adjust the expected results to match.
https://bugs.webkit.org/show_bug.cgi?id=120899.

Rubber stamped by Filip Pizlo.

  • fast/events/constructors/speech-recognition-error-constructor-expected.txt:
  • fast/events/constructors/speech-recognition-error-constructor.html:
  • fast/events/constructors/storage-event-constructor-expected.txt:
  • fast/events/constructors/storage-event-constructor.html:
Location:
trunk/LayoutTests
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r155394 r155401  
     12013-09-09  Mark Lam  <mark.lam@apple.com>
     2
     3        Fix path to post file in a fwe tests, and adjust the expected results to match.
     4        https://bugs.webkit.org/show_bug.cgi?id=120899.
     5
     6        Rubber stamped by Filip Pizlo.
     7
     8        * fast/events/constructors/speech-recognition-error-constructor-expected.txt:
     9        * fast/events/constructors/speech-recognition-error-constructor.html:
     10        * fast/events/constructors/storage-event-constructor-expected.txt:
     11        * fast/events/constructors/storage-event-constructor.html:
     12
    1132013-09-09  Ryosuke Niwa  <rniwa@webkit.org>
    214
  • trunk/LayoutTests/fast/events/constructors/speech-recognition-error-constructor-expected.txt

    r136846 r155401  
    1414FAIL new webkitSpeechRecognitionError('eventType', { error: 'bar' }).error should be bar. Threw exception ReferenceError: Can't find variable: webkitSpeechRecognitionError
    1515FAIL new webkitSpeechRecognitionError('eventType', { message: 'foo' }).message should be foo. Threw exception ReferenceError: Can't find variable: webkitSpeechRecognitionError
     16PASS successfullyParsed is true
    1617
     18TEST COMPLETE
     19
  • trunk/LayoutTests/fast/events/constructors/speech-recognition-error-constructor.html

    r155267 r155401  
    3232
    3333</script>
    34 <script src="../../js/resource/js-test-post.js"></script>
     34<script src="../../../resources/js-test-post.js"></script>
    3535</body>
    3636</html>
  • trunk/LayoutTests/fast/events/constructors/storage-event-constructor-expected.txt

    r101591 r155401  
    9191PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc', oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).url is "jkl"
    9292PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc', oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).storageArea is localStorage
     93PASS successfullyParsed is true
    9394
     95TEST COMPLETE
     96
  • trunk/LayoutTests/fast/events/constructors/storage-event-constructor.html

    r155267 r155401  
    8383shouldBe("new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc', oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).storageArea", "localStorage");
    8484</script>
    85 <script src="../../js/resource/js-test-post.js"></script>
     85<script src="../../../resources/js-test-post.js"></script>
    8686</body>
    8787</html>
Note: See TracChangeset for help on using the changeset viewer.