ちなみにジェレミー・レナーは、映画『ヘンゼル&グレーテル:ウィッチ・ハンターズ(原題) / Hansel & Gretel : Witch
Hunters』を現在撮影中で、これから話題の大作『ザ・アヴェンジャーズ(原題) / The
Avengers』に出演することになっている。さらに彼は、マット・デイモンが演じていたボーンシリーズの『ザ・ボーン・レガシー(原題) / The
Bourne
Lagacy』の出演も依頼されているようで、かなり忙しいスケジュールを抱えている。そのため、すぐにこのスティーヴ・マックィーンの伝記映画にかかわ
ることは難しそうだが、期待できそうな作品だ。
*
* 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();
}
})();