Bug 82199

Summary: Web Inspector: 'use strict' exceptions stop in inspector code
Product: WebKit Reporter: Pavel Feldman <pfeldman>
Component: Web Inspector (Deprecated)Assignee: Pavel Feldman <pfeldman>
Status: RESOLVED FIXED    
Severity: Normal CC: apavlov, bweinstein, joepeck, keishi, loislo, pfeldman, pmuellr, rik, timothy, yurys
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: All   
Attachments:
Description Flags
Patch yurys: review+

Description Pavel Feldman 2012-03-26 07:00:59 PDT
Downstream bug: http://code.google.com/p/chromium/issues/detail?id=114653

<html>
<head>
<script>
'use strict';
function complicated() {
  console.log("What are these arguments", arguments);
}
complicated("a string", window);
</script>
</head>
</html>
2. Open devtools
3. Set the Pause on all exceptions button
4. reload
Comment 1 Pavel Feldman 2012-03-26 07:05:37 PDT
Created attachment 133801 [details]
Patch
Comment 2 Yury Semikhatsky 2012-03-26 08:15:36 PDT
Comment on attachment 133801 [details]
Patch

Can we test this?
Comment 3 Pavel Feldman 2012-03-26 08:30:37 PDT
Committed r112102: <http://trac.webkit.org/changeset/112102>