I can get parent window name in Javascript, and don't know how to do it in Dart. I have tried to down cast window.opener to window in Dart, but it throw exception. According html5.1 nightly, should we expect it implemented as window basic attribute?
//js version:
window.opener.name
//dart version:
(window.opener as ?).name