- a/Source/WebInspectorUI/ChangeLog +12 lines
Lines 1-3 a/Source/WebInspectorUI/ChangeLog_sec1
1
2013-10-21  Alexandru Chiculita  <achicu@adobe.com>
2
3
        Web Inspector: [CSS Regions] Flows are not loading if you refresh the page several times
4
        https://bugs.webkit.org/show_bug.cgi?id=123123
5
6
        Reviewed by NOBODY (OOPS!).
7
8
        There was a typo in the code where an exception was thrown because "flowKey" was undefined.
9
10
        * UserInterface/DOMTree.js:
11
        (WebInspector.DOMTree.prototype._contentFlowListWasUpdated):
12
1
2013-10-21  Oliver Hunt  <oliver@apple.com>
13
2013-10-21  Oliver Hunt  <oliver@apple.com>
2
14
3
        Restore accidentally removed files.
15
        Restore accidentally removed files.
- a/Source/WebInspectorUI/UserInterface/DOMTree.js -1 / +1 lines
Lines 283-289 WebInspector.DOMTree.prototype = { a/Source/WebInspectorUI/UserInterface/DOMTree.js_sec1
283
            var flowId = flow.id;
283
            var flowId = flow.id;
284
            if (this._flowMap.hasOwnProperty(flowId)) {
284
            if (this._flowMap.hasOwnProperty(flowId)) {
285
                // Remove the flow name from the deleted list.
285
                // Remove the flow name from the deleted list.
286
                console.assert(deletedFlows.hasOwnProperty(flowKey));
286
                console.assert(deletedFlows.hasOwnProperty(flowId));
287
                delete deletedFlows[flowId];
287
                delete deletedFlows[flowId];
288
            } else {
288
            } else {
289
                this._flowMap[flowId] = flow;
289
                this._flowMap[flowId] = flow;

Return to Bug 123123