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

Unified Diff: LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-removed-and-gced-expected.txt

Issue 203053002: Add null check for frame when creating WebCore::Performance. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add rebaseline expectations Created 6 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-removed-and-gced-expected.txt
diff --git a/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-navigated-expected.txt b/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-removed-and-gced-expected.txt
similarity index 83%
copy from LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-navigated-expected.txt
copy to LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-removed-and-gced-expected.txt
index c81daeaf8bf038bb7ab38360f342c84b89c804bf..94a3143250ef6006ae838b9e921f5fb70bb15d60 100644
--- a/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-navigated-expected.txt
+++ b/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-removed-and-gced-expected.txt
@@ -1,5 +1,5 @@
CONSOLE WARNING: 'window.webkitStorageInfo' is deprecated. Please use 'navigator.webkitTemporaryStorage' or 'navigator.webkitPersistentStorage' instead.
-Tests access of cached DOMWindow properties after the associated frame is navigated. Test should not crash and properties should be set to sane defaults.
+Tests access of cached DOMWindow properties after the associated frame is removed from a web page and garbage collected. Test should not crash and properties should be set to sane defaults.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
@@ -22,15 +22,12 @@ PASS window.cached_navigator.product is window.navigator.product
PASS window.cached_navigator.productSub is window.navigator.productSub
PASS window.cached_navigator.userAgent is ''
PASS window.cached_navigator.vendor is window.navigator.vendor
-PASS window.cached_navigator_battery.charging is true
-PASS window.cached_navigator_battery.chargingTime is Infinity
-PASS window.cached_navigator_battery.dischargingTime is Infinity
-PASS window.cached_navigator_battery.level is 1
+FAIL window.cached_navigator_battery.charging should be false. Was true.
+FAIL window.cached_navigator_battery.chargingTime should be 0. Was Infinity.
+FAIL window.cached_navigator_battery.dischargingTime should be 0. Was Infinity.
+FAIL window.cached_navigator_battery.level should be 0. Was 1.
PASS window.cached_performance_timing.connectEnd is 0
PASS window.cached_performance_timing.connectStart is 0
-PASS window.cached_performance_timing.domContentLoadedEventEnd is 0
-PASS window.cached_performance_timing.domContentLoadedEventStart is 0
-PASS window.cached_performance_timing.domInteractive is 0
PASS window.cached_performance_timing.domLoading is 0
PASS window.cached_performance_timing.domainLookupEnd is 0
PASS window.cached_performance_timing.domainLookupStart is 0

Powered by Google App Engine
This is Rietveld 408576698