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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/Window/property-access-on-cached-window-after-frame-removed-expected.txt

Issue 2395653002: Remove buffering from PerformanceLongTaskTiming as it's not in the spec. (Closed)
Patch Set: update layout test expectations Created 4 years, 2 months 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
OLDNEW
1 CONSOLE WARNING: line 98: 'window.webkitStorageInfo' is deprecated. Please use ' navigator.webkitTemporaryStorage' or 'navigator.webkitPersistentStorage' instead . 1 CONSOLE WARNING: line 98: 'window.webkitStorageInfo' is deprecated. Please use ' navigator.webkitTemporaryStorage' or 'navigator.webkitPersistentStorage' instead .
2 CONSOLE WARNING: line 98: 'webkitIndexedDB' is deprecated. Please use 'indexedDB ' instead. 2 CONSOLE WARNING: line 98: 'webkitIndexedDB' is deprecated. Please use 'indexedDB ' instead.
3 CONSOLE WARNING: line 98: 'Performance.onwebkitresourcetimingbufferfull' is depr ecated. Please use 'Performance.onresourcetimingbufferfull' instead. 3 CONSOLE WARNING: line 98: 'Performance.onwebkitresourcetimingbufferfull' is depr ecated. Please use 'Performance.onresourcetimingbufferfull' instead.
4 Tests property access on a cached DOMWindow after the associated frame is no lon ger in a web page. Test should not crash and properties should be set to sane de faults. 4 Tests property access on a cached DOMWindow after the associated frame is no lon ger in a web page. Test should not crash and properties should be set to sane de faults.
5 5
6 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 6 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
7 7
8 8
9 FAIL childWindow.applicationCache.oncached should be null. Threw exception TypeE rror: Cannot read property 'oncached' of null 9 FAIL childWindow.applicationCache.oncached should be null. Threw exception TypeE rror: Cannot read property 'oncached' of null
10 FAIL childWindow.applicationCache.onchecking should be null. Threw exception Typ eError: Cannot read property 'onchecking' of null 10 FAIL childWindow.applicationCache.onchecking should be null. Threw exception Typ eError: Cannot read property 'onchecking' of null
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 PASS childWindow.onwebkittransitionend is null 164 PASS childWindow.onwebkittransitionend is null
165 PASS childWindow.onwheel is null 165 PASS childWindow.onwheel is null
166 PASS childWindow.opener is null 166 PASS childWindow.opener is null
167 PASS childWindow.outerHeight is 0 167 PASS childWindow.outerHeight is 0
168 PASS childWindow.outerWidth is 0 168 PASS childWindow.outerWidth is 0
169 PASS childWindow.pageXOffset is 0 169 PASS childWindow.pageXOffset is 0
170 PASS childWindow.pageYOffset is 0 170 PASS childWindow.pageYOffset is 0
171 PASS childWindow.performance.navigation.redirectCount is 0 171 PASS childWindow.performance.navigation.redirectCount is 0
172 PASS childWindow.performance.navigation.type is 0 172 PASS childWindow.performance.navigation.type is 0
173 PASS childWindow.performance.onframetimingbufferfull is null 173 PASS childWindow.performance.onframetimingbufferfull is null
174 PASS childWindow.performance.onlongtasktimingbufferfull is null
175 PASS childWindow.performance.onresourcetimingbufferfull is null 174 PASS childWindow.performance.onresourcetimingbufferfull is null
176 PASS childWindow.performance.onwebkitresourcetimingbufferfull is null 175 PASS childWindow.performance.onwebkitresourcetimingbufferfull is null
177 PASS childWindow.performance.timing.connectEnd is 0 176 PASS childWindow.performance.timing.connectEnd is 0
178 PASS childWindow.performance.timing.connectStart is 0 177 PASS childWindow.performance.timing.connectStart is 0
179 PASS childWindow.performance.timing.domComplete is 0 178 PASS childWindow.performance.timing.domComplete is 0
180 PASS childWindow.performance.timing.domContentLoadedEventEnd is 0 179 PASS childWindow.performance.timing.domContentLoadedEventEnd is 0
181 PASS childWindow.performance.timing.domContentLoadedEventStart is 0 180 PASS childWindow.performance.timing.domContentLoadedEventStart is 0
182 PASS childWindow.performance.timing.domInteractive is 0 181 PASS childWindow.performance.timing.domInteractive is 0
183 PASS childWindow.performance.timing.domLoading is 0 182 PASS childWindow.performance.timing.domLoading is 0
184 PASS childWindow.performance.timing.domainLookupEnd is 0 183 PASS childWindow.performance.timing.domainLookupEnd is 0
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 FAIL childWindow.visualViewport.clientWidth should be 0. Threw exception TypeErr or: Cannot read property 'clientWidth' of null 226 FAIL childWindow.visualViewport.clientWidth should be 0. Threw exception TypeErr or: Cannot read property 'clientWidth' of null
228 FAIL childWindow.visualViewport.pageX should be 0. Threw exception TypeError: Ca nnot read property 'pageX' of null 227 FAIL childWindow.visualViewport.pageX should be 0. Threw exception TypeError: Ca nnot read property 'pageX' of null
229 FAIL childWindow.visualViewport.pageY should be 0. Threw exception TypeError: Ca nnot read property 'pageY' of null 228 FAIL childWindow.visualViewport.pageY should be 0. Threw exception TypeError: Ca nnot read property 'pageY' of null
230 FAIL childWindow.visualViewport.scale should be 0. Threw exception TypeError: Ca nnot read property 'scale' of null 229 FAIL childWindow.visualViewport.scale should be 0. Threw exception TypeError: Ca nnot read property 'scale' of null
231 FAIL childWindow.visualViewport.scrollLeft should be 0. Threw exception TypeErro r: Cannot read property 'scrollLeft' of null 230 FAIL childWindow.visualViewport.scrollLeft should be 0. Threw exception TypeErro r: Cannot read property 'scrollLeft' of null
232 FAIL childWindow.visualViewport.scrollTop should be 0. Threw exception TypeError : Cannot read property 'scrollTop' of null 231 FAIL childWindow.visualViewport.scrollTop should be 0. Threw exception TypeError : Cannot read property 'scrollTop' of null
233 PASS successfullyParsed is true 232 PASS successfullyParsed is true
234 233
235 TEST COMPLETE 234 TEST COMPLETE
236 235
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698