<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body><span class="vcard"><a class="email" href="mailto:amichal&#64;greenriver.org" title="Aaron Michal &lt;amichal&#64;greenriver.org&gt;"> <span class="fn">Aaron Michal</span></a>
</span> changed
              <a class="bz_bug_link 
          bz_status_REOPENED "
   title="REOPENED - JS Function removed after parsing"
   href="https://bugs.webkit.org/show_bug.cgi?id=149175">bug 149175</a>
        <br>
             <table border="1" cellspacing="0" cellpadding="8">
          <tr>
            <th>What</th>
            <th>Removed</th>
            <th>Added</th>
          </tr>

         <tr>
           <td style="text-align:right;">CC</td>
           <td>
               &nbsp;
           </td>
           <td>amichal&#64;greenriver.org
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_REOPENED "
   title="REOPENED - JS Function removed after parsing"
   href="https://bugs.webkit.org/show_bug.cgi?id=149175#c7">Comment # 7</a>
              on <a class="bz_bug_link 
          bz_status_REOPENED "
   title="REOPENED - JS Function removed after parsing"
   href="https://bugs.webkit.org/show_bug.cgi?id=149175">bug 149175</a>
              from <span class="vcard"><a class="email" href="mailto:amichal&#64;greenriver.org" title="Aaron Michal &lt;amichal&#64;greenriver.org&gt;"> <span class="fn">Aaron Michal</span></a>
</span></b>
        <pre>You can also reproduce it be delaying the lookup with a setTimeout. The code below alerts('window.CSS.escape missing in event') in Version 9.1 (10601.5.17.4)

&lt;html&gt;
  &lt;script src='css.escape.js'&gt;&lt;/script&gt;
  &lt;script type='text/javascript'&gt;
    if (!window.CSS.escape) {
      alert('window.CSS.escape not loaded');
    }
    console.log(!!window.CSS.escape);
    setTimeout(function() {
      console.log(!!window.CSS.escape);
      if (!window.CSS.escape) {
        alert('window.CSS.escape missing in event');
      }
    },5000);
  &lt;/script&gt;
&lt;/html&gt;</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>