アリスは2010年の映画『ある日モテ期がやってきた』で完璧な容姿の美女役を演じたほか、映画『セックス・アンド・ザ・シティ2』ではノーブラにぬれたタンクトップをまとったセクシーな姿で登場して注目されており、今回もその端麗な容姿で魅力を発揮しそう。シリーズ3作目『メン・イン・ブラック3(原題) / Men in Black III』は、ウィル・スミス演じるMIBのエージェント「J」が、タイムトラベルして若い時代のエージェント「K」とコンビを組む設定。2012年5月25日の全米公開を予定している。
*
* Again: this will **not** prevent inline script, e.g.:
* .
*
* This workaround is possible because Safari supports the non-standard 'beforeload' event.
* This allows us to trap the module and nomodule load.
*
* Note also that `nomodule` is supported in later versions of Safari - it's just 10.1 that
* omits this attribute.
* -->
*/
(function () {
const check = document.createElement('script');
if (!('noModule' in check) && 'onbeforeload' in check) {
let support = false;
document.addEventListener(
'beforeload',
(e) => {
if (e.target === check) {
support = true;
} else if (!e.target.hasAttribute('nomodule') || !support) {
return;
}
e.preventDefault();
},
true,
);
check.type = 'module';
const blob = URL.createObjectURL(
new window.Blob([], { type: 'text/javascript' }),
);
check.src = blob;
check.onload = () => {
URL.revokeObjectURL(blob);
};
document.head.appendChild(check);
check.remove();
}
})();