chromium/third_party/blink/web_tests/http/tests/misc/set-window-opener-to-null-expected.txt

This tests that following code works in Chrome:
var w = window.open(...);
w.opener = null;

After new page finishes loading, its opener should stay as null.

PASS