Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Side by Side Diff: LayoutTests/fast/events/constructors/storage-event-constructor-expected.txt

Issue 54473004: Make js-test-post a noop. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add mac NeedsRebaselines Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 This tests the constructor for the StorageEvent DOM class. 1 This tests the constructor for the StorageEvent DOM class.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS new StorageEvent('eventType').bubbles is false 6 PASS new StorageEvent('eventType').bubbles is false
7 PASS new StorageEvent('eventType').cancelable is false 7 PASS new StorageEvent('eventType').cancelable is false
8 PASS new StorageEvent('eventType').key is "" 8 PASS new StorageEvent('eventType').key is ""
9 PASS new StorageEvent('eventType').oldValue is null 9 PASS new StorageEvent('eventType').oldValue is null
10 PASS new StorageEvent('eventType').newValue is null 10 PASS new StorageEvent('eventType').newValue is null
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 PASS new StorageEvent('eventType', { storageArea: {valueOf: function () { return window; } } }).storageArea == window is false 83 PASS new StorageEvent('eventType', { storageArea: {valueOf: function () { return window; } } }).storageArea == window is false
84 PASS new StorageEvent('eventType', { get storageArea() { return 123; } }).storag eArea is null 84 PASS new StorageEvent('eventType', { get storageArea() { return 123; } }).storag eArea is null
85 PASS new StorageEvent('eventType', { get storageArea() { throw 'StorageEvent Err or'; } }) threw exception StorageEvent Error. 85 PASS new StorageEvent('eventType', { get storageArea() { throw 'StorageEvent Err or'; } }) threw exception StorageEvent Error.
86 PASS new StorageEvent('eventType', { bubbles: true, cancelable: false, key: 'abc ', oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).bu bbles is true 86 PASS new StorageEvent('eventType', { bubbles: true, cancelable: false, key: 'abc ', oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).bu bbles is true
87 PASS new StorageEvent('eventType', { bubbles: false, cancelable: true, key: 'abc ', oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).ca ncelable is true 87 PASS new StorageEvent('eventType', { bubbles: false, cancelable: true, key: 'abc ', oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).ca ncelable is true
88 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc' , oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).key is "abc" 88 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc' , oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).key is "abc"
89 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc' , oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).old Value is "def" 89 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc' , oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).old Value is "def"
90 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc' , oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).new Value is "ghi" 90 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc' , oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).new Value is "ghi"
91 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc' , oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).url is "jkl" 91 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc' , oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).url is "jkl"
92 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc' , oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).sto rageArea is localStorage 92 PASS new StorageEvent('eventType', { bubbles: true, cancelable: true, key: 'abc' , oldValue: 'def', newValue: 'ghi', url: 'jkl', storageArea: localStorage }).sto rageArea is localStorage
93 PASS successfullyParsed is true
93 94
95 TEST COMPLETE
96
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698