[Webkit-unassigned] [Bug 129294] New: [Inspector][EFL] Can't resume a special break point on EFL inspector

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Feb 25 01:45:15 PST 2014


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

           Summary: [Inspector][EFL] Can't resume a special break point on
                    EFL inspector
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: Unspecified
        OS/Version: Unspecified
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Web Inspector
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: gyuyoung.kim at samsung.com
                CC: timothy at apple.com, joepeck at webkit.org,
                    webkit-bug-importer at group.apple.com,
                    graouts at webkit.org


As mentioned in Bug 129247, the test page has some problems. One is a crash when enabling JIT, the other is that a break point is not resumed if a break point is set inside "addEventListener" when disabling JIT.

Reproduced steps :

1. Turn JIT off on EFL port. (Source/cmake/WebKitFeatures.cmake)
1. Tools/Script/build-webkit --efl --cmakeargs="-DSHARED_CORE=ON" --debug
2. WebKitBuild/Debug/bin/MiniBrowser ./inspector.html
3. Run inspector by using context menu after clicking mouse right button.
4. Set a break point in below line of inspector.js

    var textbox = document.querySelector('.contents');
    textbox.addEventListener("click", function(){
=>      box = document.querySelector('#textbox');
        box.innerHTML = box.innerHTML == "Basic" ? "Sample" : "Basic";
    });

5. Click "Basic" test on MiniBrowser.
6. The break point is cached.
7. Press "resume" button on inspector.
8. Looks look up.


According to my investigation until now, inspector can't receive "resume" event from Inspector frontend(UIProcess).

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list