Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-removed.html |
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-removed.html b/third_party/WebKit/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-removed.html |
| index 34262dca9f17eed861a10daafa0a2fe19f69076b..63e260564105fe2940117e6717c963db649a7a5d 100644 |
| --- a/third_party/WebKit/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-removed.html |
| +++ b/third_party/WebKit/LayoutTests/fast/dom/Window/property-access-on-cached-properties-after-frame-removed.html |
| @@ -13,9 +13,6 @@ function insertExpectedResult(path, expected) |
| if (path.length < 2) |
| return; |
| var propertyDir = path.slice(0, -1).join('.'); |
| - // Cached Location properties become undefined. |
|
dcheng
2017/03/06 06:59:46
Ditto: no need to exclude this anymore
|
| - if (propertyDir == "location") |
| - expected = "undefined"; |
| var cachedPropertyDir = "cached_" + propertyDir.replace('.', '_'); |
| window[cachedPropertyDir] = eval("childWindow." + propertyDir); |
| propertiesToVerify.push({ |