Changeset 155401 in webkit
- Timestamp:
- Sep 9, 2013, 4:04:51 PM (12 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r155394 r155401 1 2013-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 1 13 2013-09-09 Ryosuke Niwa <rniwa@webkit.org> 2 14 -
trunk/LayoutTests/fast/events/constructors/speech-recognition-error-constructor-expected.txt
r136846 r155401 14 14 FAIL new webkitSpeechRecognitionError('eventType', { error: 'bar' }).error should be bar. Threw exception ReferenceError: Can't find variable: webkitSpeechRecognitionError 15 15 FAIL new webkitSpeechRecognitionError('eventType', { message: 'foo' }).message should be foo. Threw exception ReferenceError: Can't find variable: webkitSpeechRecognitionError 16 PASS successfullyParsed is true 16 17 18 TEST COMPLETE 19 -
trunk/LayoutTests/fast/events/constructors/speech-recognition-error-constructor.html
r155267 r155401 32 32 33 33 </script> 34 <script src="../../ js/resource/js-test-post.js"></script>34 <script src="../../../resources/js-test-post.js"></script> 35 35 </body> 36 36 </html> -
trunk/LayoutTests/fast/events/constructors/storage-event-constructor-expected.txt
r101591 r155401 91 91 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc', oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).url is "jkl" 92 92 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc', oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).storageArea is localStorage 93 PASS successfullyParsed is true 93 94 95 TEST COMPLETE 96 -
trunk/LayoutTests/fast/events/constructors/storage-event-constructor.html
r155267 r155401 83 83 shouldBe("new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc', oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).storageArea", "localStorage"); 84 84 </script> 85 <script src="../../ js/resource/js-test-post.js"></script>85 <script src="../../../resources/js-test-post.js"></script> 86 86 </body> 87 87 </html>
Note:
See TracChangeset
for help on using the changeset viewer.