Changeset 82667 in webkit


Ignore:
Timestamp:
Apr 1, 2011 3:17:26 AM (13 years ago)
Author:
podivilov@chromium.org
Message:

2011-03-30 Pavel Podivilov <podivilov@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: add test for script formatter worker.
https://bugs.webkit.org/show_bug.cgi?id=57447

  • inspector/debugger/script-formatter-expected.txt: Added.
  • inspector/debugger/script-formatter.html: Added.
  • platform/chromium/test_expectations.txt:

2011-03-30 Pavel Podivilov <podivilov@chromium.org>

Reviewed by Pavel Feldman.

Web Inspector: add test for script formatter worker.
https://bugs.webkit.org/show_bug.cgi?id=57447

Test: inspector/debugger/script-formatter.html

  • GNUmakefile.am:
  • inspector/front-end/DebuggerPresentationModel.js: (WebInspector.DebuggerPresentationModel): (WebInspector.DebuggerPresentationModel.prototype.toggleFormatSourceFiles):
Location:
trunk
Files:
2 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r82664 r82667  
     12011-03-30  Pavel Podivilov  <podivilov@chromium.org>
     2
     3        Reviewed by Pavel Feldman.
     4
     5        Web Inspector: add test for script formatter worker.
     6        https://bugs.webkit.org/show_bug.cgi?id=57447
     7
     8        * inspector/debugger/script-formatter-expected.txt: Added.
     9        * inspector/debugger/script-formatter.html: Added.
     10        * platform/chromium/test_expectations.txt:
     11
    1122011-03-31  Yury Semikhatsky  <yurys@chromium.org>
    213
  • trunk/LayoutTests/platform/chromium/test_expectations.txt

    r82648 r82667  
    162162WONTFIX SKIP : http/tests/eventsource/workers = PASS TIMEOUT FAIL
    163163WONTFIX SKIP : http/tests/websocket/tests/workers/ = PASS TIMEOUT FAIL
     164WONTFIX SKIP : inspector/debugger/script-formatter.html = PASS TIMEOUT FAIL
    164165
    165166// Page Cache - based tests. Chromium disables page cache because the WebKit page cache keeps previously
  • trunk/Source/WebCore/ChangeLog

    r82666 r82667  
     12011-03-30  Pavel Podivilov  <podivilov@chromium.org>
     2
     3        Reviewed by Pavel Feldman.
     4
     5        Web Inspector: add test for script formatter worker.
     6        https://bugs.webkit.org/show_bug.cgi?id=57447
     7
     8        Test: inspector/debugger/script-formatter.html
     9
     10        * GNUmakefile.am:
     11        * inspector/front-end/DebuggerPresentationModel.js:
     12        (WebInspector.DebuggerPresentationModel):
     13        (WebInspector.DebuggerPresentationModel.prototype.toggleFormatSourceFiles):
     14
    1152011-03-30  Pavel Podivilov  <podivilov@chromium.org>
    216
  • trunk/Source/WebCore/GNUmakefile.am

    r82599 r82667  
    51955195        DerivedSources/WebCore/InspectorBackendStub.js \
    51965196        $(shell ls $(WebCore)/inspector/front-end/*.js) \
     5197        $(shell ls $(WebCore)/inspector/front-end/UglifyJS/*.js) \
    51975198        $(shell ls $(WebCore)/inspector/front-end/*.html) \
    51985199        $(shell ls $(WebCore)/inspector/front-end/*.css)
     
    52085209${GENSOURCES_INSPECTOR}/inspector.html: $(WebCore)/inspector/front-end/*.html \
    52095210                $(WebCore)/inspector/front-end/*.js \
     5211                $(WebCore)/inspector/front-end/UglifyJS/*.js \
    52105212                $(WebCore)/inspector/front-end/*.css \
    52115213                $(WebCore)/inspector/front-end/Images/* \
  • trunk/Source/WebCore/inspector/front-end/DebuggerPresentationModel.js

    r82590 r82667  
    3636    this._presentationCallFrames = [];
    3737    this._selectedCallFrameIndex = 0;
     38    this._formatter = new WebInspector.ScriptFormatter();
    3839
    3940    WebInspector.debuggerModel.addEventListener(WebInspector.DebuggerModel.Events.DebuggerWasEnabled, this._debuggerWasEnabled, this);
     
    181182    {
    182183        this._formatSourceFiles = !this._formatSourceFiles;
    183         if (this._formatSourceFiles && !this._formatter)
    184             this._formatter = new WebInspector.ScriptFormatter();
    185184
    186185        var messages = this._messages;
Note: See TracChangeset for help on using the changeset viewer.