タグ

ブックマーク / rch850.hatenablog.com (1)

  • Chrome 59 で window.open の挙動が変わった - rch850 の上澄み

    JavaScript で新しいウィンドウを開くため、このようなコードを書いていたのですが、Chrome 59 になってから新しいタブで開くようになってしまいました。 window.open('http://example.com/', '_blank', 'width=640, height=480, location=yes') window.open の第3引数 feature から、アドレスバーを表示するためのオプション location=yes を取り除くことで、タブではなくウィンドウで開くようになりました。 window.open('http://example.com/', '_blank', 'width=640, height=480') こうなった原因を探るため Chrome 59 のコミットログ を window.open で検索したところ window.open()

    Chrome 59 で window.open の挙動が変わった - rch850 の上澄み
  • 1