#if( $enableFocusVisible )
<script>
  svDocReady(function() {
    (function(stylesheetUrl) {
      var selectorRegExp = /:focus-visible([^\w-]|$)/gi;
      var replaceWith = '.focus-visible$1';
      jQuery.get(stylesheetUrl, function(css) {
        var polyfillEnabledCss = css.replace(selectorRegExp, replaceWith);
        var styleElement = document.createElement('style');
        styleElement.innerHTML = polyfillEnabledCss;
        styleElement.setAttribute('type', 'text/css');

        document.head.appendChild(styleElement);
      });
    }('$!{focusVisibleCssUrl}'));
  });
</script>
<script src="/download/18.4b76e1a017b57cdf86616fa/1629391391799/focus-visible-unpkg.js"></script>
#end
