| Index: third_party/WebKit/LayoutTests/fast/dom/Window/property-access-on-cached-window-after-frame-removed.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/dom/Window/property-access-on-cached-window-after-frame-removed.html b/third_party/WebKit/LayoutTests/fast/dom/Window/property-access-on-cached-window-after-frame-removed.html
|
| index bd68d91aa1915e3473c5d1973ee4ca4d9ebbfd36..1570aab002d0aa52edb20b8c7b4803d112205236 100644
|
| --- a/third_party/WebKit/LayoutTests/fast/dom/Window/property-access-on-cached-window-after-frame-removed.html
|
| +++ b/third_party/WebKit/LayoutTests/fast/dom/Window/property-access-on-cached-window-after-frame-removed.html
|
| @@ -10,7 +10,10 @@ var propertiesToVerify = [];
|
|
|
| function insertExpectedResult(path, expected)
|
| {
|
| - propertiesToVerify.push({"path": path.slice(0), "property": path.join("."), "expected": expected});
|
| + var property = path.join(".");
|
| + if (property == "location.ancestorOrigins.length")
|
| + expected = '0';
|
| + propertiesToVerify.push({"path": path.slice(0), "property": property, "expected": expected});
|
| }
|
|
|
| function runTest()
|
|
|