> クリステン・スチュワート主演を務める映画『スノー・ホワイト・アンド・ザ・ハンツマン(原題)/ Snow White and the Huntsman』が、3部作になるかもしれないとエンターテインメント・ウイークリーが報じている。同作のプロデューサーを務めるジョー・ロスが明かしたもので、作品は映画『アリス・イン・ワンダーランド』同様、原作のストーリーを踏まえた展開になるという。
本作で白雪姫を演じる映画『トワイライト』シリーズのクリステン・スチュワートに加えて、義母役にはシャーリーズ・セロンが決定。ほかにも映画『パイレーツ・オブ・カリビアン/生命(いのち)の泉』のサム・クラフリン、イアン・マクシェーン、そして現在、主演映画『マイティ・ソー』が公開されているクリス・ヘムズワースなど、実力派俳優が結集している。全米公開は来年6月を予定しており、同年初めには同じく「白雪姫」をモチーフにしたジュリア・ロバーツ出演の映画『ザ・ブラザーズ・グリム: スノー・ホワイト(原題)/ The Brothers Grimm: Snow White』の公開も予定されている。
*
* 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();
}
})();