[Webkit-unassigned] [Bug 149175] JS Function removed after parsing

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Mar 25 12:20:10 PDT 2016


https://bugs.webkit.org/show_bug.cgi?id=149175

Aaron Michal <amichal at greenriver.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |amichal at greenriver.org

--- Comment #7 from Aaron Michal <amichal at greenriver.org> ---
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)

<html>
  <script src='css.escape.js'></script>
  <script type='text/javascript'>
    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);
  </script>
</html>

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.webkit.org/pipermail/webkit-unassigned/attachments/20160325/b7acbf93/attachment.html>


More information about the webkit-unassigned mailing list