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

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

Issue 2706923002: Rework security checks to be based on Window rather than Frame. (Closed)
Patch Set: Fix test typo Created 3 years, 9 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 104: 'window.webkitStorageInfo' is deprecated. Please use 'navigator.webkitTemporaryStorage' or 'navigator.webkitPersistentStorage' instea d. 1 CONSOLE WARNING: line 107: 'window.webkitStorageInfo' is deprecated. Please use 'navigator.webkitTemporaryStorage' or 'navigator.webkitPersistentStorage' instea d.
2 Tests access of cached DOMWindow properties after the associated frame is naviga ted. Test should not crash and properties should be set to sane defaults. 2 Tests access of cached DOMWindow properties after the associated frame is naviga ted. Test should not crash and properties should be set to sane defaults.
3 3
4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
5 5
6 6
7 PASS window.cached_applicationCache.oncached is null 7 PASS window.cached_applicationCache.oncached is null
8 PASS window.cached_applicationCache.onchecking is null 8 PASS window.cached_applicationCache.onchecking is null
9 PASS window.cached_applicationCache.ondownloading is null 9 PASS window.cached_applicationCache.ondownloading is null
10 PASS window.cached_applicationCache.onerror is null 10 PASS window.cached_applicationCache.onerror is null
11 PASS window.cached_applicationCache.onnoupdate is null 11 PASS window.cached_applicationCache.onnoupdate is null
12 PASS window.cached_applicationCache.onobsolete is null 12 PASS window.cached_applicationCache.onobsolete is null
13 PASS window.cached_applicationCache.onprogress is null 13 PASS window.cached_applicationCache.onprogress is null
14 PASS window.cached_applicationCache.onupdateready is null 14 PASS window.cached_applicationCache.onupdateready is null
15 PASS window.cached_applicationCache.status is 0 15 PASS window.cached_applicationCache.status is 0
16 PASS window.cached_history.length is 0 16 PASS window.cached_history.length is 0
17 PASS window.cached_history.scrollRestoration is 'auto' 17 PASS window.cached_history.scrollRestoration is 'auto'
18 PASS window.cached_history.state is null 18 PASS window.cached_history.state is null
19 PASS window.cached_location.hash is undefined 19 PASS window.cached_location.hash is ''
dcheng 2017/03/06 06:59:46 As navigating doe not clear Location's pointer bac
20 PASS window.cached_location.host is undefined 20 PASS window.cached_location.host is ''
21 PASS window.cached_location.hostname is undefined 21 PASS window.cached_location.hostname is ''
22 PASS window.cached_location.href is undefined 22 PASS window.cached_location.href is 'about:blank'
23 PASS window.cached_location.origin is undefined 23 PASS window.cached_location.origin is 'null'
24 PASS window.cached_location.pathname is undefined 24 PASS window.cached_location.pathname is 'blank'
25 PASS window.cached_location.port is undefined 25 PASS window.cached_location.port is ''
26 PASS window.cached_location.protocol is undefined 26 PASS window.cached_location.protocol is 'about:'
27 PASS window.cached_location.search is undefined 27 PASS window.cached_location.search is ''
28 PASS window.cached_location_ancestorOrigins.length is 1 28 PASS window.cached_location_ancestorOrigins.length is 1
29 PASS window.cached_locationbar.visible is false 29 PASS window.cached_locationbar.visible is false
30 PASS window.cached_menubar.visible is false 30 PASS window.cached_menubar.visible is false
31 PASS window.cached_navigator.appCodeName is window.navigator.appCodeName 31 PASS window.cached_navigator.appCodeName is window.navigator.appCodeName
32 PASS window.cached_navigator.appName is window.navigator.appName 32 PASS window.cached_navigator.appName is window.navigator.appName
33 PASS window.cached_navigator.appVersion is '' 33 PASS window.cached_navigator.appVersion is ''
34 PASS window.cached_navigator.cookieEnabled is false 34 PASS window.cached_navigator.cookieEnabled is false
35 PASS window.cached_navigator.doNotTrack is null 35 PASS window.cached_navigator.doNotTrack is null
36 PASS window.cached_navigator.hardwareConcurrency is window.navigator.hardwareCon currency 36 PASS window.cached_navigator.hardwareConcurrency is window.navigator.hardwareCon currency
37 PASS window.cached_navigator.language is window.navigator.language 37 PASS window.cached_navigator.language is window.navigator.language
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 PASS window.cached_visualViewport.clientWidth is 0 105 PASS window.cached_visualViewport.clientWidth is 0
106 PASS window.cached_visualViewport.pageX is 0 106 PASS window.cached_visualViewport.pageX is 0
107 PASS window.cached_visualViewport.pageY is 0 107 PASS window.cached_visualViewport.pageY is 0
108 PASS window.cached_visualViewport.scale is 0 108 PASS window.cached_visualViewport.scale is 0
109 PASS window.cached_visualViewport.scrollLeft is 0 109 PASS window.cached_visualViewport.scrollLeft is 0
110 PASS window.cached_visualViewport.scrollTop is 0 110 PASS window.cached_visualViewport.scrollTop is 0
111 PASS successfullyParsed is true 111 PASS successfullyParsed is true
112 112
113 TEST COMPLETE 113 TEST COMPLETE
114 114
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698