chromium/third_party/blink/web_tests/http/tests/navigation/window-open-adds-history-item.html

<p>This page dumps the back/forward list that results from calling window.open targeted at the current window</p>
<script src="resources/document-location.js"></script>
<script>
window.onload = start;

function runTest()
{
    var tmp = window.name;
    window.name = "myWindow";
    window.open(window.location + "?1", "myWindow");
    window.name = tmp;
}
</script>