Changeset 121765 in webkit


Ignore:
Timestamp:
Jul 3, 2012 8:00:09 AM (12 years ago)
Author:
vsevik@chromium.org
Message:

inspector/debugger/script-snippet-model.html fails
https://bugs.webkit.org/show_bug.cgi?id=90385

Reviewed by Pavel Feldman.

Source/WebCore:

  • inspector/front-end/ScriptSnippetModel.js:

LayoutTests:

  • inspector/debugger/script-snippet-model-expected.txt:
  • platform/chromium/inspector/debugger/script-snippet-model-expected.txt: Copied from LayoutTests/inspector/debugger/script-snippet-model-expected.txt.
  • platform/qt/Skipped:
Location:
trunk
Files:
5 edited
1 copied

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r121764 r121765  
     12012-07-03  Vsevolod Vlasov  <vsevik@chromium.org>
     2
     3        inspector/debugger/script-snippet-model.html fails
     4        https://bugs.webkit.org/show_bug.cgi?id=90385
     5
     6        Reviewed by Pavel Feldman.
     7
     8        * inspector/debugger/script-snippet-model-expected.txt:
     9        * platform/chromium/inspector/debugger/script-snippet-model-expected.txt: Copied from LayoutTests/inspector/debugger/script-snippet-model-expected.txt.
     10        * platform/qt/Skipped:
     11
    1122012-07-03  Alexander Pavlov  <apavlov@chromium.org>
    213
  • trunk/LayoutTests/inspector/debugger/script-snippet-model-expected.txt

    r121673 r121765  
    99Last evaluation source url for snippet: snippets:///2_2
    1010Snippet script added, sourceURL = snippets:///2_2
    11 Snippet execution result: function doesNothing()
    12 {
     11Snippet execution result: function doesNothing() {
    1312    var  i = 2+2;
    1413}
  • trunk/LayoutTests/platform/qt/Skipped

    r121687 r121765  
    25342534css3/filters/huge-region-composited.html
    25352535
    2536 # inspector/debugger/script-snippet-model.html fails
    2537 # https://bugs.webkit.org/show_bug.cgi?id=90385
    2538 inspector/debugger/script-snippet-model.html
  • trunk/Source/WebCore/ChangeLog

    r121764 r121765  
     12012-07-03  Vsevolod Vlasov  <vsevik@chromium.org>
     2
     3        inspector/debugger/script-snippet-model.html fails
     4        https://bugs.webkit.org/show_bug.cgi?id=90385
     5
     6        Reviewed by Pavel Feldman.
     7
     8        * inspector/front-end/ScriptSnippetModel.js:
     9
    1102012-07-03  Alexander Pavlov  <apavlov@chromium.org>
    211
  • trunk/Source/WebCore/inspector/front-end/ScriptSnippetModel.js

    r121673 r121765  
    171171        // We do the same when we are stopped on the call frame  since debugger is already paused and can not stop on breakpoint anymore.
    172172        if (WebInspector.debuggerModel.selectedCallFrame() || !Capabilities.separateScriptCompilationAndExecutionEnabled) {
    173             expression = snippetJavaScriptSource.workingCopy() + "\n//@ sourceURL=" + snippetJavaScriptSource.url + "\n";
     173            expression = snippetJavaScriptSource.workingCopy() + "\n//@ sourceURL=" + evaluationUrl + "\n";
    174174            WebInspector.evaluateInConsole(expression, true);
    175175            return;
Note: See TracChangeset for help on using the changeset viewer.